Changeset 4831 for branches/erijo-dev
- Timestamp:
- 01/27/07 06:56:27 (22 months ago)
- Location:
- branches/erijo-dev/licq
- Files:
-
- 1 added
- 1 modified
-
CMakeLists.txt (modified) (3 diffs)
-
README (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/erijo-dev/licq/CMakeLists.txt
r4830 r4831 1 1 project(Licq) 2 cmake_minimum_required(VERSION 2.4. 4)2 cmake_minimum_required(VERSION 2.4.5) 3 3 include(TestCXXAcceptsFlag) 4 4 … … 7 7 8 8 # Command to build and run tests (make tests) 9 # Added as part of the default target 9 10 add_custom_target(tests ALL COMMAND ctest 10 11 DEPENDS licqutilstest licqdaemontest … … 28 29 set(DLOPEN_POLICY RTLD_NOW) 29 30 31 # Boost 32 find_package(Boost REQUIRED) 33 include_directories(${Boost_INCLUDE_DIRS}) 34 link_directories(${Boost_LIBRARY_DIRS}) 35 30 36 # To find licq directory 31 37 include_directories(${CMAKE_SOURCE_DIR})
