[CMake] Auto made projects

2014-03-14 Thread J Decker
I have a cmake script that writes build commands to build a chain of other cmake scripts... to get the appropriate build command for the generator selected I do something like. build_command( BUILD_COMMAND CONFIGURATION ${CMAKE_BUILD_TYPE} PROJECT_NAME ${SOLUTION} TARGET install ) SEPA

Re: [CMake] CMake Tools for Visual Studio 1.1 Released!

2014-03-14 Thread David Golub
An oversight on my part. It's fixed now. I apologize for any confusion. David Golub From: Simon Sasburg [mailto:simon.sasb...@gmail.com] Sent: Friday, March 14, 2014 9:39 PM To: David Golub Cc: CMake ML Subject: Re: [CMake] CMake Tools for Visual Studio 1.1 Released! Maybe you could

Re: [CMake] CMake Tools for Visual Studio 1.1 Released!

2014-03-14 Thread Simon Sasburg
Maybe you could update the project description to indicate it supports VS2013. When i first clicked the link i got a bit disappointed because it said only 2010 and 2012 are supported. Only when i re-read the mail later i saw 2013 is actually supported. Simon On Tue, Feb 25, 2014 at 2:20 AM, Davi

Re: [CMake] CMAKE_CURRENT_LIST_DIR equivalent 2.8.2

2014-03-14 Thread David Cole
I do this to avoid using CMAKE_CURRENT_LIST_DIR in projects that must still work with older CMake versions: get_filename_component(_self_dir ${CMAKE_CURRENT_LIST_FILE} PATH) After that call, the variable "_self_dir" has equivalent content to the present-day CMAKE_CURRENT_LIST_DIR. CMAKE_CUR

Re: [CMake] Regarding CMAKE and OSX Mavericks

2014-03-14 Thread Sean McBride
On Sat, 15 Mar 2014 00:57:16 +1100, Theodore St. Shenouda said: >CMAKE Version : 3.0.0 rc 1 > >My current system version. >OS:OSX 10.9.2 >XCODE: 5.0.2 > > >The C compiler identification is unknown >CMake Error at CMakeLists.txt:1 (project): >No CMAKE_C_COMPILER could be found. > > >Configuring

[CMake] CMAKE_CURRENT_LIST_DIR equivalent 2.8.2

2014-03-14 Thread Jack Stalnaker
I'm stuck at 2.8.2. Is there an equivalent or a workaround for CMAKE_CURRENT_LIST_DIR in this version? Thanks. -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake commu

[CMake] Reverted to 2.8.12.8

2014-03-14 Thread Theodore St. Shenouda
>> I have reverted back to the below version, however the following error >> occurs, >> CMAKE Version : 2.8.12.2 >> >> My current system version. >> OS:OSX 10.9.2 >> XCODE: 5.0.2 >> >> CMake Error at /Applications/CMake 2.8-12.app/Contents/share/cmake-2.8/Modules/CMakeDetermineCompilerId

Re: [CMake] Fortran_FORMAT

2014-03-14 Thread Jack Stalnaker
I figured it out. My version of Cmake (2.8.2) does not have the Fortran_FORMAT property. Thanks! On Thu, Mar 13, 2014 at 1:15 PM, Nils Gladitz wrote: > On 13.03.2014 17:40, Jack Stalnaker wrote: > > Can someone provide an example of Fortran_FORMAT in use? I cannot find > anything other than a

Re: [CMake] Regarding CMAKE and OSX Mavericks

2014-03-14 Thread Bogdan Cristea
Using cmake 2.8.12.2 on MacOSX 10.9.2 detects correctly the compiler On 14 Mar 2014, at 14:57, Theodore St. Shenouda wrote: > > To Whom It May Concern, > > I am currently a Student attempting to use OPENGL on OSX Mavericks, however > in order to use some of the latest GLFW libraries I requir

[CMake] Regarding CMAKE and OSX Mavericks

2014-03-14 Thread Theodore St. Shenouda
To Whom It May Concern,I am currently a Student attempting to use OPENGL on OSX Mavericks, however in order to use some of the latest GLFW libraries I require to compile source files to apply them, however when attempting to use CMAKE I get the following error:CMAKE Version : 3.0.0 rc 1My current s

Re: [CMake] Linking with boost

2014-03-14 Thread David Cole
If you start with a clean directory in each case, do you get the same results? (i.e. -- is the result of the first run cached, and re-used despite your change of variable value...?) HTH, David C. -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http