blob: cb963762dafcd28d88c812f01973ae2e27332304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
PROJECT(CMake)
SUBDIRS(Source Modules Templates)
# Include the standard Dart testing module
INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
# add some testing dependencies
IF(BUILD_TESTING)
IF (DART_ROOT)
ADD_DEPENDENCIES(Nightly cmaketest cmake)
ADD_DEPENDENCIES(Experimental cmaketest cmake)
ADD_DEPENDENCIES(NightlyTest cmaketest cmake)
ADD_DEPENDENCIES(ExperimentalTest cmaketest cmake)
CONFIGURE_FILE(${CMake_SOURCE_DIR}/CMakeLogo.gif ${CMake_BINARY_DIR}/Testing/HTML/TestingResults/Icons/Logo.gif COPYONLY)
ENDIF (DART_ROOT)
ENDIF(BUILD_TESTING)
SET(EXECUTABLE_OUTPUT_PATH ${CMake_BINARY_DIR}/Source CACHE PATH
"Where to put the executables for CMake"
)
INCLUDE_REGULAR_EXPRESSION("^(\\.\\./)?(cm|FLTK|CMake).*")
|