CMake/CMakeLists.txt

35 lines
1.0 KiB
CMake
Raw Normal View History

2001-06-12 17:30:13 +00:00
PROJECT(CMake)
2001-11-02 21:01:47 +00:00
SUBDIRS(Source Modules Templates Utilities)
2001-06-12 17:30:13 +00:00
# Include the standard Dart testing module
INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
2001-09-28 14:34:41 +00:00
INCLUDE (${CMAKE_BINARY_DIR}/Source/InitialConfigureFlags.cmake OPTIONAL)
2001-09-27 19:54:47 +00:00
IF(CMAKE_CONFIGURE_INSTALL_PREFIX)
SET(CMAKE_INSTALL_PREFIX ${CMAKE_CONFIGURE_INSTALL_PREFIX} )
ENDIF(CMAKE_CONFIGURE_INSTALL_PREFIX)
2001-06-12 17:30:13 +00:00
2001-08-27 14:11:48 +00:00
# use the ansi CXX compile flag for building cmake
2001-08-28 20:06:52 +00:00
IF (CMAKE_ANSI_CXXFLAGS)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_ANSI_CXXFLAGS}")
ENDIF (CMAKE_ANSI_CXXFLAGS)
2001-11-07 18:46:09 +00:00
IF (CMAKE_ANSI_CFLAGS)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_ANSI_CFLAGS}")
ENDIF (CMAKE_ANSI_CFLAGS)
2001-06-27 13:16:16 +00: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 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|form).*")
2001-06-12 17:30:13 +00:00
2001-06-21 16:01:18 +00:00