diff options
author | Josh Blum <josh@joshknows.com> | 2010-12-27 14:10:27 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-12-27 14:10:27 -0800 |
commit | 8dffb7d5a6f3ff0390ca01dcd15200689b874b30 (patch) | |
tree | d01db9ff7c0bc4d87aea4af6d6b424db48a1a212 /images/CMakeLists.txt | |
parent | 3017907fd83d32e89e91f43a5d2b94d4155beddd (diff) | |
download | uhd-8dffb7d5a6f3ff0390ca01dcd15200689b874b30.tar.gz uhd-8dffb7d5a6f3ff0390ca01dcd15200689b874b30.tar.bz2 uhd-8dffb7d5a6f3ff0390ca01dcd15200689b874b30.zip |
cmake: moved module files into modules directory, set modules path
Diffstat (limited to 'images/CMakeLists.txt')
-rw-r--r-- | images/CMakeLists.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/images/CMakeLists.txt b/images/CMakeLists.txt index 75cb4c9d3..ee8146f3a 100644 --- a/images/CMakeLists.txt +++ b/images/CMakeLists.txt @@ -15,14 +15,13 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) -PROJECT(UHD-images NONE) - ######################################################################## -# Config Files (include order is important) +# Setup Project ######################################################################## -INCLUDE(${CMAKE_SOURCE_DIR}/../host/config/Python.cmake) -INCLUDE(${CMAKE_SOURCE_DIR}/../host/config/Version.cmake) +CMAKE_MINIMUM_REQUIRED(VERSION 2.6) +PROJECT(UHD-images NONE) +LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/../host/Modules) +INCLUDE(UHDVersion) #sets version variables (used below) ######################################################################## # Setup CPack |