[Cmake-commits] CMake branch, master, updated. v3.11.0-rc1-111-g464ae1b

2018-02-26 Thread Kitware Robot
VERSION_MINOR 11) -set(CMake_VERSION_PATCH 20180226) +set(CMake_VERSION_PATCH 20180227) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/

Re: [CMake] Return an Error Code (or something) from a CMake Script.

2018-02-26 Thread Alan W. Irwin
On 2018-02-26 14:19-0500 Michael Jackson wrote: In our CMake based project I generate a *.cmake file which I call with the following bit of code: add_custom_target(DREAM3D_MKDOCS_GENERATION ALL COMMAND "${CMAKE_COMMAND}" -P "${docsCmakeFile}" COMMENT "using mkdocs to generate the

Re: [CMake] Return an Error Code (or something) from a CMake Script.

2018-02-26 Thread Eric Noulard
cmake -P usually do the right thing. Here you ignore the error because you only message (STATUS ...) Try adding message (ERROR ...) or message (FATAL_ERROR ...) when execute_process producer error and tout custom command should faim. Le 26 févr. 2018 20:19, "Michael Jackson"

[CMake] Return an Error Code (or something) from a CMake Script.

2018-02-26 Thread Michael Jackson
In our CMake based project I generate a *.cmake file which I call with the following bit of code: add_custom_target(DREAM3D_MKDOCS_GENERATION ALL COMMAND "${CMAKE_COMMAND}" -P "${docsCmakeFile}" COMMENT "using mkdocs to generate the documentation" ) Inside the generated file is

Re: [CMake] Bug on Windows with Intel Fortran

2018-02-26 Thread Bill Hoffman
On 2/23/2018 10:59 AM, Anthony Zukaitis wrote: On windows I found an issue with Visual studio where intel fortran was attempting to preprocess lowercase .f90 files.  Intel's documentation states that it does not preprocess these files.  Looking into the cmake source code I found: in

[Cmake-commits] CMake branch, master, updated. v3.11.0-rc1-110-gf7430b2

2018-02-26 Thread Kitware Robot
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, master has been updated via f7430b2538211ea59d5a853148de3b282796bf6a (commit) via

Re: [CMake] recusively calling make install

2018-02-26 Thread Stéphane Ancelot
found:that was because of a project that was not compiling Le 26/02/2018 à 09:52, Stéphane Ancelot a écrit : Hi, I have got a master CMake file that includes subprojects as follow : add_subdirectory(proj1) add_subdirectory(proj2) src+proj1 +proj2 The main problem is that I can

[CMake] recusively calling make install

2018-02-26 Thread Stéphane Ancelot
Hi, I have got a master CMake file that includes subprojects as follow : add_subdirectory(proj1) add_subdirectory(proj2) src+proj1 +proj2 The main problem is that I can run make install in each project directory, but not from the top CMake directory in src dir how to propagate