Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[cmake] useless cleanups: better file names
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 29 Sep 2015 20:51:34 +0000 (22:51 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 29 Sep 2015 20:51:34 +0000 (22:51 +0200)
CMakeLists.txt
tools/cmake/DefinePackages.cmake
tools/cmake/Documentation.cmake [moved from tools/cmake/GenerateDoc.cmake with 100% similarity]
tools/cmake/GCCFlags.cmake [moved from tools/cmake/Flags.cmake with 100% similarity]

index 2e257a5..18d2c52 100644 (file)
@@ -14,7 +14,7 @@ endif()
 
 ## 
 ## Check the C/C++ standard that we need
-##   See also tools/cmake/Flags.cmake that sets our paranoid warning flags
+##   See also tools/cmake/GCCFlags.cmake that sets our paranoid warning flags
 if (MSVC)
   message("-- You are compiling SimGrid with MicroSoft Visual C. Good luck.")
 
@@ -251,7 +251,7 @@ include(${CMAKE_HOME_DIRECTORY}/tools/cmake/UnitTesting.cmake)
 
 ### Setup gcc & clang flags
 if (NOT MSVC)
-  include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Flags.cmake)
+  include(${CMAKE_HOME_DIRECTORY}/tools/cmake/GCCFlags.cmake)
 endif()
 
 ### Make Libs
@@ -282,7 +282,7 @@ include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Distrib.cmake)
 ### Build the doc (Windows downloads the doc instead of regenerating)
 #
 if(NOT WIN32)
-  include(${CMAKE_HOME_DIRECTORY}/tools/cmake/GenerateDoc.cmake)
+  include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Documentation.cmake)
 else()
   find_program(WGET_PROGRAM  NAMES wget)
   message(STATUS "wget: ${WGET_PROGRAM}")
index 83a1a59..9505af4 100644 (file)
@@ -1183,8 +1183,8 @@ set(CMAKE_SOURCE_FILES
   tools/cmake/CompleteInFiles.cmake
   tools/cmake/DefinePackages.cmake
   tools/cmake/Distrib.cmake
-  tools/cmake/Flags.cmake
-  tools/cmake/GenerateDoc.cmake
+  tools/cmake/GCCFlags.cmake
+  tools/cmake/Documentation.cmake
   tools/cmake/MaintainerMode.cmake
   tools/cmake/MakeExe.cmake
   tools/cmake/MakeJava.cmake