From aa23cec2a04fe81857758af0cb1b4a3310844c1e Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Thu, 24 Feb 2011 11:10:47 +0100 Subject: [PATCH] + added install.cmake to configure dependancies paths --- edo/CMakeLists.txt | 35 +++++++++++++++++++++++------------ edo/install.cmake-dist | 20 ++++++++++++++++++++ 2 files changed, 43 insertions(+), 12 deletions(-) create mode 100644 edo/install.cmake-dist diff --git a/edo/CMakeLists.txt b/edo/CMakeLists.txt index 868c456b..56343704 100644 --- a/edo/CMakeLists.txt +++ b/edo/CMakeLists.txt @@ -1,5 +1,14 @@ +############################################################################ +########## +### 1) If you want to set your own variables in install.cmake and avoid the cmd line ###################################################################################### -### 1) Set the application properties + +INCLUDE(install.cmake OPTIONAL) + +###################################################################################### + +###################################################################################### +### 2) Project properties ###################################################################################### # Checks cmake version compatibility @@ -16,15 +25,12 @@ SET(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT ###################################################################################### -### 2) Include useful features +### 3) Include useful features ###################################################################################### INCLUDE(FindDoxygen) INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(EO eo REQUIRED) -PKG_CHECK_MODULES(MO mo REQUIRED) - FIND_PACKAGE(Boost 1.33.0) INCLUDE_DIRECTORIES( @@ -34,11 +40,16 @@ INCLUDE_DIRECTORIES( # /Dev/ometah-0.3/common ) +LINK_DIRECTORIES( + ${EO_LIBRARY_DIRS} + ${MO_LIBRARY_DIRS} + ) + ###################################################################################### ###################################################################################### -### 3) Include header files path +### 4) Include header files path ###################################################################################### INCLUDE_DIRECTORIES( @@ -49,7 +60,7 @@ INCLUDE_DIRECTORIES( ###################################################################################### -### 4) Set compiler definitions +### 5) Set compiler definitions ###################################################################################### IF(UNIX) @@ -63,7 +74,7 @@ ENDIF() ###################################################################################### -### 5) Prepare some variables for CMAKE usage +### 6) Prepare some variables for CMAKE usage ###################################################################################### SET(SAMPLE_SRCS) @@ -72,7 +83,7 @@ SET(SAMPLE_SRCS) ###################################################################################### -### 6) Now where we go ? +### 7) Now where we go ? ###################################################################################### ADD_SUBDIRECTORY(src) @@ -85,7 +96,7 @@ ADD_SUBDIRECTORY(doc) ###################################################################################### -### 7) Create executable, link libraries and prepare target +### 8) Create executable, link libraries and prepare target ###################################################################################### SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib) @@ -99,7 +110,7 @@ INSTALL(TARGETS edo ARCHIVE DESTINATION lib COMPONENT libraries) ###################################################################################### -### 8) Install pkg-config config file for EO +### 9) Install pkg-config config file for EO ###################################################################################### INSTALL(FILES edo.pc DESTINATION lib/pkgconfig COMPONENT headers) @@ -108,7 +119,7 @@ INSTALL(FILES edo.pc DESTINATION lib/pkgconfig COMPONENT headers) ###################################################################################### -### 9) Include packaging +### 10) Include packaging ###################################################################################### INCLUDE(Packaging.cmake) diff --git a/edo/install.cmake-dist b/edo/install.cmake-dist new file mode 100644 index 00000000..bd07be7c --- /dev/null +++ b/edo/install.cmake-dist @@ -0,0 +1,20 @@ +# Variables to set + +# directory we need to build project +SET(EO_DIR "<>" CACHE PATH "EO directory" FORCE) +SET(MO_DIR "<>" CACHE PATH "MO directory" FORCE) + +# automagically set parameters, do not edit + +SET(EO_INCLUDE_DIRS "${EO_DIR}/src" CACHE PATH "EO include directory" FORCE) +SET(EO_LIBRARY_DIRS "${EO_DIR}/release/lib" CACHE PATH "EO library directory" FORCE) +SET(EO_LIBRARIES "eoutils eo es ga cma gcov") + +SET(MO_INCLUDE_DIRS "${MO_DIR}/src" CACHE PATH "MO include directory" FORCE) +SET(MO_LIBRARY_DIRS "${MO_DIR}/release/lib" CACHE PATH "MO library directory" FORCE) +SET(MO_LIBRARIES "mo") + +# ... or rather use pkg-config (dont forget to comment the code above) + +#PKG_CHECK_MODULES(EO eo REQUIRED) +#PKG_CHECK_MODULES(MO mo REQUIRED)