CMake/CMakeLists.txt

27 lines
757 B
CMake
Raw Normal View History

2001-06-12 17:30:13 +00:00
PROJECT(CMake)
2001-06-21 16:01:18 +00:00
SUBDIRS(Source Modules Templates)
2001-06-12 17:30:13 +00:00
# Include the standard Dart testing module
INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
2001-06-27 13:16:16 +00: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 20:06:37 +00:00
CONFIGURE_FILE(${CMake_SOURCE_DIR}/Web/Art/CMakeLogo.gif ${CMake_BINARY_DIR}/Testing/HTML/TestingResults/Icons/Logo.gif COPYONLY)
2001-06-27 13:16:16 +00: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 17:30:13 +00:00
INCLUDE_REGULAR_EXPRESSION("^(\\.\\./)?(cm|FLTK|CMake).*")
2001-06-12 17:30:13 +00:00
2001-06-21 16:01:18 +00:00