2001-06-19 15:33:37 -04:00
|
|
|
INCLUDE (${CMAKE_ROOT}/Modules/FindFLTK.cmake)
|
|
|
|
IF(FLTK_LIBRARY)
|
|
|
|
IF(FLTK_INCLUDE_PATH)
|
2001-06-21 15:02:18 -04:00
|
|
|
OPTION(BUILD_FLTK_GUI "Build FLTK CMake GUI." "ON")
|
|
|
|
IF(BUILD_FLTK_GUI)
|
|
|
|
SUBDIRS(FLTKDialog)
|
|
|
|
ENDIF(BUILD_FLTK_GUI)
|
2001-06-19 15:33:37 -04:00
|
|
|
ENDIF(FLTK_INCLUDE_PATH)
|
|
|
|
ENDIF(FLTK_LIBRARY)
|
|
|
|
|
2001-06-12 13:30:13 -04:00
|
|
|
SOURCE_FILES(SRCS
|
2001-06-27 15:42:27 -04:00
|
|
|
cmake.cxx
|
2001-11-30 16:48:52 -05:00
|
|
|
cmakewizard.cxx
|
2001-06-20 13:56:38 -04:00
|
|
|
cmMakeDepend.cxx
|
|
|
|
cmMakefile.cxx
|
|
|
|
cmMakefileGenerator.cxx
|
|
|
|
cmRegularExpression.cxx
|
|
|
|
cmSourceFile.cxx
|
|
|
|
cmSystemTools.cxx
|
|
|
|
cmDirectory.cxx
|
|
|
|
cmCommands.cxx
|
|
|
|
cmTarget.cxx
|
|
|
|
cmCustomCommand.cxx
|
|
|
|
cmCacheManager.cxx
|
|
|
|
cmCableClassSet.cxx
|
|
|
|
cmSourceGroup.cxx
|
2001-08-28 18:28:31 -04:00
|
|
|
cmListFileCache.cxx
|
2001-06-12 13:30:13 -04:00
|
|
|
)
|
|
|
|
|
2001-06-20 13:56:38 -04:00
|
|
|
# configure the .h file
|
|
|
|
CONFIGURE_FILE(
|
|
|
|
${CMake_SOURCE_DIR}/Source/cmConfigure.cmake.h.in
|
2001-06-21 13:48:08 -04:00
|
|
|
${CMake_BINARY_DIR}/Source/cmConfigure.h )
|
2001-06-20 13:56:38 -04:00
|
|
|
# add the include path to find the .h
|
|
|
|
INCLUDE_DIRECTORIES(${CMake_BINARY_DIR}/Source)
|
|
|
|
# let cmake know it is supposed to use it
|
|
|
|
ADD_DEFINITIONS(-DCMAKE_BUILD_WITH_CMAKE)
|
|
|
|
|
2001-06-12 13:30:13 -04:00
|
|
|
IF (WIN32)
|
2001-06-20 13:56:38 -04:00
|
|
|
SOURCE_FILES(SRCS cmDSWWriter.cxx cmDSPWriter.cxx cmMSProjectGenerator.cxx)
|
2001-11-30 16:48:52 -05:00
|
|
|
SOURCE_FILES(SRCS cmBorlandMakefileGenerator.cxx)
|
2001-11-13 18:23:45 -05:00
|
|
|
SOURCE_FILES(SRCS cmNMakeMakefileGenerator.cxx)
|
2001-06-20 16:49:09 -04:00
|
|
|
IF(NOT UNIX)
|
2001-11-29 09:09:11 -05:00
|
|
|
IF( NOT BORLAND )
|
2001-10-03 15:49:52 -04:00
|
|
|
SUBDIRS(MFCDialog)
|
2001-11-29 09:09:11 -05:00
|
|
|
ENDIF( NOT BORLAND )
|
2001-06-20 16:49:09 -04:00
|
|
|
ENDIF(NOT UNIX)
|
2001-06-12 13:30:13 -04:00
|
|
|
ENDIF (WIN32)
|
|
|
|
|
2001-11-05 15:55:24 -05:00
|
|
|
IF (UNIX)
|
2001-11-13 14:22:29 -05:00
|
|
|
INCLUDE (${CMAKE_ROOT}/Modules/FindCurses.cmake OPTIONAL)
|
2001-11-05 15:55:24 -05:00
|
|
|
IF (CURSES_LIBRARY)
|
2001-11-09 16:05:33 -05:00
|
|
|
SUBDIRS(CursesDialog/form)
|
2001-11-05 15:55:24 -05:00
|
|
|
SUBDIRS(CursesDialog)
|
2001-11-09 16:05:33 -05:00
|
|
|
SUBDIR_DEPENDS(CursesDialog CursesDialog/form)
|
2001-11-05 15:55:24 -05:00
|
|
|
ENDIF (CURSES_LIBRARY)
|
|
|
|
ENDIF (UNIX)
|
2001-11-04 18:05:21 -05:00
|
|
|
|
2001-06-20 16:49:09 -04:00
|
|
|
SOURCE_FILES(SRCS cmUnixMakefileGenerator.cxx)
|
|
|
|
|
|
|
|
|
2001-06-19 15:33:37 -04:00
|
|
|
# create a library used by the command line and the GUI
|
|
|
|
ADD_LIBRARY(CMakeLib SRCS)
|
|
|
|
# always link in the library
|
|
|
|
LINK_LIBRARIES(CMakeLib)
|
|
|
|
# the library is found here
|
2001-09-10 11:03:30 -04:00
|
|
|
LINK_DIRECTORIES(${CMake_BINARY_DIR}/Source)
|
2001-06-19 15:33:37 -04:00
|
|
|
|
|
|
|
ADD_EXECUTABLE(cmake cmakemain)
|
2001-08-23 17:40:07 -04:00
|
|
|
ADD_EXECUTABLE(DumpDocumentation cmDumpDocumentation)
|
2001-06-12 13:30:13 -04:00
|
|
|
|
2001-08-23 11:12:19 -04:00
|
|
|
ADD_EXECUTABLE(ctest ctest.cxx cmSystemTools.cxx cmRegularExpression.cxx)
|
|
|
|
|
2001-06-26 13:23:55 -04:00
|
|
|
IF(BUILD_TESTING)
|
|
|
|
IF (DART_ROOT)
|
|
|
|
ADD_EXECUTABLE(cmaketest cmaketest.cxx cmSystemTools.cxx)
|
|
|
|
ADD_DEPENDENCIES(cmaketest cmake)
|
|
|
|
ADD_DEPENDENCIES(Nightly cmaketest cmake)
|
|
|
|
ADD_DEPENDENCIES(Experimental cmaketest cmake)
|
|
|
|
|
|
|
|
CONFIGURE_FILE(
|
|
|
|
${CMake_SOURCE_DIR}/Source/cmaketest.h.in
|
|
|
|
${CMake_BINARY_DIR}/Source/cmaketest.h ESCAPE_QUOTES)
|
2001-08-23 17:40:07 -04:00
|
|
|
ADD_TEST(DumpDocumentation ${CMake_BINARY_DIR}/Source/DumpDocumentation
|
|
|
|
${CMake_BINARY_DIR}/CMakeDoc.html )
|
2001-06-26 13:23:55 -04:00
|
|
|
ADD_TEST(simple ${CMake_BINARY_DIR}/Source/cmaketest
|
|
|
|
${CMake_SOURCE_DIR}/Tests/Simple
|
2001-08-23 16:00:46 -04:00
|
|
|
${CMake_BINARY_DIR}/Tests/Simple simple )
|
|
|
|
ADD_TEST(complex ${CMake_BINARY_DIR}/Source/cmaketest
|
|
|
|
${CMake_SOURCE_DIR}/Tests/Complex
|
|
|
|
${CMake_BINARY_DIR}/Tests/Complex
|
|
|
|
complex
|
|
|
|
${CMake_BINARY_DIR}/Tests/Complex/bin )
|
2001-06-26 13:23:55 -04:00
|
|
|
|
|
|
|
ENDIF (DART_ROOT)
|
|
|
|
ENDIF(BUILD_TESTING)
|
|
|
|
|
2001-06-12 13:30:13 -04:00
|
|
|
|
2001-09-27 14:58:14 -04:00
|
|
|
|
2001-06-12 13:30:13 -04:00
|
|
|
INSTALL_TARGETS(/bin cmake)
|
2001-08-23 11:12:19 -04:00
|
|
|
INSTALL_TARGETS(/bin ctest)
|
2001-06-12 13:30:13 -04:00
|
|
|
|