rename CMakeScripts/ to cmake/

Most projects nowadays call the project specific cmake scripts directory
just `cmake/` and we will do so as well.
This commit is contained in:
Rafael Kitover 2017-09-13 20:30:33 -07:00
parent 02b3defcd0
commit b82cab14e2
17 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ if(COMMAND cmake_policy)
cmake_policy(SET CMP0005 NEW) # escapes in add_definitions cmake_policy(SET CMP0005 NEW) # escapes in add_definitions
endif(COMMAND cmake_policy) endif(COMMAND cmake_policy)
SET( CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeScripts ) SET( CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake )
#Output all binaries at top level #Output all binaries at top level
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}) SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})