diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-07 04:07:24 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-07 04:07:24 (GMT) |
commit | 2cd431d905d8dd33a59b095853e5ba7f4b66a9eb (patch) | |
tree | f4102d334c22f3bfca15851ea89df97417e66576 /Source/CTest/CMakeLists.txt | |
parent | 6ecc00601c90fc656eb92cdadf2758adba2816c3 (diff) | |
download | CMake-2cd431d905d8dd33a59b095853e5ba7f4b66a9eb.zip CMake-2cd431d905d8dd33a59b095853e5ba7f4b66a9eb.tar.gz CMake-2cd431d905d8dd33a59b095853e5ba7f4b66a9eb.tar.bz2 |
Start working on improved test
Diffstat (limited to 'Source/CTest/CMakeLists.txt')
-rw-r--r-- | Source/CTest/CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/CTest/CMakeLists.txt b/Source/CTest/CMakeLists.txt new file mode 100644 index 0000000..130caea --- /dev/null +++ b/Source/CTest/CMakeLists.txt @@ -0,0 +1,18 @@ +CMAKE_MINIMUM_REQUIRED(VERSION 1.5) +PROJECT(CTEST CXX) + +SUBDIRS(Curl) + +FIND_LIBRARY(CMAKE_LIBRARY NAMES CMakeLib PATHS + ${CTEST_BINARY_DIR}/..) + +SET(CTEST_SRCS + ../ctest.cxx + ../cmCTest.cxx + cmCTestSubmit.cxx) + +INCLUDE_DIRECTORIES(${CTEST_SOURCE_DIR}/..) + +ADD_DEFINITIONS(-DHAVE_CURL) +ADD_EXECUTABLE(ctest ${CTEST_SRCS}) +TARGET_LINK_LIBRARIES(ctest ${CMAKE_LIBRARY} Curl)
\ No newline at end of file |