CMake/CMakeLists.txt

35 lines
1.0 KiB
CMake
Raw Normal View History

2001-06-12 21:30:13 +04:00
PROJECT(CMake)
2001-11-03 00:01:47 +03:00
SUBDIRS(Source Modules Templates Utilities)
2001-06-12 21:30:13 +04:00
# Include the standard Dart testing module
INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
2001-09-28 18:34:41 +04:00
INCLUDE (${CMAKE_BINARY_DIR}/Source/InitialConfigureFlags.cmake OPTIONAL)
2001-09-27 23:54:47 +04:00
IF(CMAKE_CONFIGURE_INSTALL_PREFIX)
SET(CMAKE_INSTALL_PREFIX ${CMAKE_CONFIGURE_INSTALL_PREFIX} )
ENDIF(CMAKE_CONFIGURE_INSTALL_PREFIX)
2001-06-12 21:30:13 +04:00
2001-08-27 18:11:48 +04:00
# use the ansi CXX compile flag for building cmake
2001-08-29 00:06:52 +04:00
IF (CMAKE_ANSI_CXXFLAGS)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_ANSI_CXXFLAGS}")
ENDIF (CMAKE_ANSI_CXXFLAGS)
2001-11-07 21:46:09 +03:00
IF (CMAKE_ANSI_CFLAGS)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_ANSI_CFLAGS}")
ENDIF (CMAKE_ANSI_CFLAGS)
2001-06-27 17:16:16 +04:00
# add some testing dependencies
IF(BUILD_TESTING)
IF (DART_ROOT)
CONFIGURE_FILE(${CMake_SOURCE_DIR}/CMakeLogo.gif ${CMake_BINARY_DIR}/Testing/HTML/TestingResults/Icons/Logo.gif COPYONLY)
2001-06-27 17: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 21:30:13 +04:00
INCLUDE_REGULAR_EXPRESSION("^(\\.\\./)?(cm|FLTK|CMake|form).*")
2001-06-12 21:30:13 +04:00
2001-06-21 20:01:18 +04:00