diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2016-08-12 00:52:12 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2016-08-12 02:38:30 +0200 |
commit | dec72dddca009ce210ee90b7522adebb1238b21b (patch) | |
tree | 3a5dcc8d0b4813a3cef3bad94ee11e82485f268f /CMakeLists.txt | |
parent | b0c8eceb08b9a7688893991e5ba4a3350617e6ed (diff) |
Fixed paths for cmake
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d0966116d..577ed3ea16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") set(CMAKE_INSTALL_RPATH_USE_LINK_PATH 1) # set macro-directory -set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/src/cmake/macros") +set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules/acore/cmake/macros") include(CheckCXXSourceRuns) include(CheckIncludeFiles) @@ -80,10 +80,10 @@ if(NOT WITHOUT_GIT) endif() # Find revision ID and hash of the sourcetree -include(src/cmake/genrev.cmake) +include(modules/acore/cmake/genrev.cmake) # print out the results before continuing -include(src/cmake/showoptions.cmake) +include(modules/acore/cmake/showoptions.cmake) # add modules and dependencies CU_SUBDIRLIST(sub_DIRS "${CMAKE_SOURCE_DIR}/modules" FALSE FALSE) |