summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-12 17:30:13 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-12 17:30:13 (GMT)
commit583ac25e8fa4f17aa282837611624d20225a59e1 (patch)
tree1b00456a5594abd299c070b745bb102824488fb9 /Source
parent19b2f84ac7dd9a64661124971704d694e9dfbda2 (diff)
downloadCMake-583ac25e8fa4f17aa282837611624d20225a59e1.zip
CMake-583ac25e8fa4f17aa282837611624d20225a59e1.tar.gz
CMake-583ac25e8fa4f17aa282837611624d20225a59e1.tar.bz2
support testing
Diffstat (limited to 'Source')
-rw-r--r--Source/CMakeLists.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt
new file mode 100644
index 0000000..f8ef7e5
--- /dev/null
+++ b/Source/CMakeLists.txt
@@ -0,0 +1,30 @@
+SOURCE_FILES(SRCS
+cmake
+cmMakeDepend
+cmMakefile
+cmMakefileGenerator
+cmRegularExpression
+cmSourceFile
+cmSystemTools
+cmDirectory
+cmCommands
+cmTarget
+cmCustomCommand
+cmCacheManager
+cmCableClassSet
+cmSourceGroup
+cmakemain
+)
+
+IF (WIN32)
+ SOURCE_FILES(SRCS cmDSWWriter cmDSPWriter cmMSProjectGenerator)
+ELSE (WIN32)
+ SOURCE_FILES(SRCS cmUnixMakefileGenerator)
+ENDIF (WIN32)
+
+ADD_EXECUTABLE(cmake SRCS)
+
+ADD_TEST(burn cmake)
+
+INSTALL_TARGETS(/bin cmake)
+