CMake/CMakeLists.txt

27 lines
757 B
CMake
Raw Normal View History

2001-06-12 13:30:13 -04:00
PROJECT(CMake)
2001-06-21 12:01:18 -04:00
SUBDIRS(Source Modules Templates)
2001-06-12 13:30:13 -04:00
# Include the standard Dart testing module
INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
2001-06-27 09:16:16 -04:00
# 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)
2001-06-29 16:06:37 -04:00
CONFIGURE_FILE(${CMake_SOURCE_DIR}/Web/Art/CMakeLogo.gif ${CMake_BINARY_DIR}/Testing/HTML/TestingResults/Icons/Logo.gif COPYONLY)
2001-06-27 09:16:16 -04:00
ENDIF (DART_ROOT)
ENDIF(BUILD_TESTING)
SET(EXECUTABLE_OUTPUT_PATH ${CMake_BINARY_DIR}/Source CACHE PATH
"Where to put the executables for CMake"
)
2001-06-12 13:30:13 -04:00
INCLUDE_REGULAR_EXPRESSION("^(\\.\\./)?(cm|FLTK|CMake).*")
2001-06-12 13:30:13 -04:00
2001-06-21 12:01:18 -04:00