Re: [CMake] Supress generation of a Makefile

2015-03-19 Thread Hendrik Sattler
Am 18. März 2015 23:59:10 MEZ, schrieb aditya siram aditya.si...@gmail.com: Hi all, I have a cross platform project where Linux/Mac users will use the standard autoheader;autoconf;./configure .. routine, but on Windows users will do cmake .; make. that's the wrong command I am using CMake

[CMake] (no subject)

2015-03-19 Thread Tobias Becker
I have written a cmake tool which allows you to modify CMakeLists files from the command line. It is written in pure cmake leverages my cmake token parser/ reflection functions which I added to cmakepp (a free, universial, open source, pure cmake function library)

[CMake] How to use pkg-config in CMakeLists.txt

2015-03-19 Thread 张世勇
Hello All I'm newer for CMake. Now I'm trying to use CMake in current project, but I met following issue CMakeLists.txt : FIND_PACKAGE(PkgConfig)PKG_CHECK_MODULES(GLIB glib-2.0)PKG_CHECK_MODULES(GTHREAD gthread-2.0)PKG_CHECK_MODULES(GOBJECT gobject-2.0) SET(GLIB_LIBS glib-2.0 gthread-2.0

[Cmake-commits] CMake branch, master, updated. v3.2.1-442-ga066f73

2015-03-19 Thread Kitware Robot
20150319) +set(CMake_VERSION_PATCH 20150320) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- CMake

Re: [cmake-developers] FW: FW: Initial Attempt at Green Hill MULTI IDE Generator Support

2015-03-19 Thread Geoffrey Viola
I just noticed that in some of the new C++ sources you copied the copyright block from other files but forgot to change the notice lines to refer to yourself or your employer. Certainly the current lines do not refer to the author of the content ;) Sorry about that. I updated them. Good

Re: [cmake-developers] Generating buildsystem metadata from CMake

2015-03-19 Thread Tobias Hunger
Hi Anton, you raised some good points, all of which I agree with:-) On Thu, Mar 19, 2015 at 10:18 AM, Anton Makeev anton.mak...@jetbrains.com wrote: * If it is useful to preprocess/compile/assemble individual files from IDEs, as made possible by the Makefiles and Ninja generators, we'll need

[cmake-developers] [CMake 0015460]: PGI Fortran compiler does not recognise -fPIE

2015-03-19 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=15460 == Reported By:Tiago Quintino Assigned To:

Re: [cmake-developers] Generating buildsystem metadata from CMake

2015-03-19 Thread Tobias Hunger
Hi Stephen, On Thu, Mar 19, 2015 at 2:22 AM, Stephen Kelly steve...@gmail.com wrote: * In Target Properties/Conditional Properties and optional properties: Would it make sense to have a list of target_files, each with a filepath and a type? That would be more similar to the targets which also

[Cmake-commits] CMake branch, next, updated. v3.2.1-1092-gc52d65d

2015-03-19 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, next has been updated via c52d65dbee29af9141d12cfd2f5c1c5b4ac5a3a5 (commit) via

[CMake] Understanding dependencies with an external project

2015-03-19 Thread Tom Davis
Hi there, I only started using CMake a couple days ago so please pardon the newbie questions. I'm having some trouble understanding the relationships between add_dependencies, add_custom_command, and add_custom_target as they relate to forming dependencies on external project targets. I am trying

Re: [cmake-developers] Support of codesign

2015-03-19 Thread Clinton Stimpson
Thanks for providing the patch. http://www.cmake.org/gitweb?p=cmake.git;a=commit;h=2c50db26 Clint On Wednesday, March 18, 2015 08:24:36 AM A. Klitzing wrote: Ping? :-) Am 11.03.2015 13:21 schrieb A. Klitzing aklitz...@gmail.com: Hi there! I added another improvement to the codesign

Re: [CMake] control dependencies in cmake stage

2015-03-19 Thread Tomasz Majchrowski
Thank you Mark for hint about that solution. I think the losses may be reduced by distributing #includes directives across many well known files (as in example: GenChunk.tar) Those chunks can be already compiled in parallel. Best regards, Tomasz. 2015-03-12 17:50 GMT+01:00 Mark Abraham

Re: [CMake] nonstandard C++ source filename extension

2015-03-19 Thread Bill Hoffman
This works for me: ---CMakeLists.txt cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(asm CXX) add_executable(foo foo.bar) set_source_files_properties(foo.bar PROPERTIES LANGUAGE CXX) ---foo.bar--- int main() { return 0;} $ /cygdrive/c/Program\ Files\ \(x86\)/CMake/bin/cmake

Re: [CMake] Supress generation of a Makefile

2015-03-19 Thread Bill Hoffman
On 3/19/2015 2:20 AM, Hendrik Sattler wrote: How do I stop CMake from generating a Makefile? Don't do in source builds. mkdir build. cd build cmake .. -Bill -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ