Re: [CMake] ExternalProject_Add examples

2013-10-28 Thread Aaron Nowack
https://github.com/OpenChemistry/openchemistry/tree/master/cmake David Cole pointed me to the project he is developing. There are a lot of ExternalProject_Add examples, and good practices for super-build projects in general. It was/is very helpful for me! On Mon, Oct 28, 2013 at 2:05 AM, Yngve

Re: [CMake] Problem using VS 2012 Express and CMake

2013-10-08 Thread Aaron Nowack
Has anyone been able to get the newest cmake release (2.8.11.2) working with Visual Studio 2013 Express RC? I've been trying yet cmake cannot identify the C/CXX compilers, The CXX compiler identification is unknown. Anyone have any suggestions? On Tue, Oct 8, 2013 at 6:37 AM, Robert Maynard

Re: [CMake] ExternalProject_Add - Automatic Incremental Rebuilds + Add Sources to IDE

2013-09-22 Thread Aaron Nowack
, 2013 at 12:45 PM, Aaron Nowack aaronbnow...@gmail.comwrote: You can structure the app CMakeLists such that it can reference the libs as part of a big build everything tree like this, or as something that has to be found with find_package, or as something you just point to with CMake variables

Re: [CMake] ExternalProject_Add - Automatic Incremental Rebuilds + Add Sources to IDE

2013-09-20 Thread Aaron Nowack
You can structure the app CMakeLists such that it can reference the libs as part of a big build everything tree like this, or as something that has to be found with find_package, or as something you just point to with CMake variables. Was the parent CMakeLists.txt an example of only how to

[CMake] ExternalProject_Add - Automatic Incremental Rebuilds + Add Sources to IDE

2013-09-17 Thread Aaron Nowack
Hi, I am trying to figure out how to use externalproject_add to allow my work group to code more rapidly. We have a mercurial repository which builds a set of libraries, and a separate repository which contains applications that use those libraries. It is important for us to keep them separate.

[CMake] Including source files generated by a cmake project with ExternalProject_Add in an IDE

2013-07-12 Thread Aaron Nowack
Hi, I have two cmake projects named projectA and projectB. projectA includes projectB via ExternalProject_add which uses the SOURCE_DIR and CMAKE_ARGS flags to build and have tell projectB where to put the compiled libraries that projectA requires. I like using IDEs like codeblocks and when I