cmake/Tests/CMakeLib/CMakeLists.txt

81 lines
2.4 KiB
CMake
Raw Normal View History

2010-03-17 14:00:29 +02:00
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMake_BINARY_DIR}/Source
${CMake_SOURCE_DIR}/Source
2020-02-01 23:06:01 +01:00
${CMake_SOURCE_DIR}/Source/CTest
2010-03-17 14:00:29 +02:00
)
set(CMakeLib_TESTS
2019-11-11 23:01:05 +01:00
testArgumentParser.cxx
2020-02-01 23:06:01 +01:00
testCTestBinPacker.cxx
testCTestResourceAllocator.cxx
testCTestResourceSpec.cxx
testCTestResourceGroups.cxx
2020-08-30 11:54:41 +02:00
testGccDepfileReader.cxx
2018-04-23 21:13:27 +02:00
testGeneratedFileStream.cxx
2021-09-14 00:13:48 +02:00
testJSONHelpers.cxx
2018-04-23 21:13:27 +02:00
testRST.cxx
2019-11-11 23:01:05 +01:00
testRange.cxx
2020-02-01 23:06:01 +01:00
testOptional.cxx
2019-11-11 23:01:05 +01:00
testString.cxx
2020-02-01 23:06:01 +01:00
testStringAlgorithms.cxx
2018-04-23 21:13:27 +02:00
testSystemTools.cxx
testUTF8.cxx
testXMLParser.cxx
testXMLSafe.cxx
testFindPackageCommand.cxx
2019-11-11 23:01:05 +01:00
testUVProcessChain.cxx
2018-04-23 21:13:27 +02:00
testUVRAII.cxx
2019-11-11 23:01:05 +01:00
testUVStreambuf.cxx
2020-08-30 11:54:41 +02:00
testCMExtMemory.cxx
testCMExtAlgorithm.cxx
2022-08-04 22:12:04 +02:00
testCMExtEnumSet.cxx
2010-03-17 14:00:29 +02:00
)
2021-09-14 00:13:48 +02:00
if (CMake_TEST_FILESYSTEM_PATH OR NOT CMake_HAVE_CXX_FILESYSTEM)
list(APPEND CMakeLib_TESTS testCMFilesystemPath.cxx)
endif()
2010-03-17 14:00:29 +02:00
2019-11-11 23:01:05 +01:00
add_executable(testUVProcessChainHelper testUVProcessChainHelper.cxx)
2015-04-27 22:25:09 +02:00
set(testRST_ARGS ${CMAKE_CURRENT_SOURCE_DIR})
2019-11-11 23:01:05 +01:00
set(testUVProcessChain_ARGS $<TARGET_FILE:testUVProcessChainHelper>)
set(testUVStreambuf_ARGS $<TARGET_FILE:cmake>)
2020-02-01 23:06:01 +01:00
set(testCTestResourceSpec_ARGS ${CMAKE_CURRENT_SOURCE_DIR})
2020-08-30 11:54:41 +02:00
set(testGccDepfileReader_ARGS ${CMAKE_CURRENT_SOURCE_DIR})
2015-04-27 22:25:09 +02:00
2014-08-03 19:52:23 +02:00
if(WIN32)
2013-11-03 12:27:13 +02:00
list(APPEND CMakeLib_TESTS
2018-04-23 21:13:27 +02:00
testVisualStudioSlnParser.cxx
2013-11-03 12:27:13 +02:00
)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/testVisualStudioSlnParser.h.in
${CMAKE_CURRENT_BINARY_DIR}/testVisualStudioSlnParser.h @ONLY)
endif()
2010-03-17 14:00:29 +02:00
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/testXMLParser.h.in
${CMAKE_CURRENT_BINARY_DIR}/testXMLParser.h @ONLY)
create_test_sourcelist(CMakeLib_TEST_SRCS CMakeLibTests.cxx ${CMakeLib_TESTS})
add_executable(CMakeLibTests ${CMakeLib_TEST_SRCS})
2020-02-01 23:06:01 +01:00
target_link_libraries(CMakeLibTests CMakeLib CTestLib)
2010-03-17 14:00:29 +02:00
2018-04-23 21:13:27 +02:00
set_property(TARGET CMakeLibTests PROPERTY C_CLANG_TIDY "")
set_property(TARGET CMakeLibTests PROPERTY CXX_CLANG_TIDY "")
2017-04-14 19:02:05 +02:00
add_executable(testEncoding testEncoding.cxx)
target_link_libraries(testEncoding cmsys)
2018-04-23 21:13:27 +02:00
foreach(testfile ${CMakeLib_TESTS})
get_filename_component(test "${testfile}" NAME_WE)
2019-11-11 23:01:05 +01:00
add_test(NAME CMakeLib.${test} COMMAND CMakeLibTests ${test} ${${test}_ARGS})
2010-03-17 14:00:29 +02:00
endforeach()
2011-06-19 15:41:06 +03:00
if(TEST_CompileCommandOutput)
add_executable(runcompilecommands run_compile_commands.cxx)
target_link_libraries(runcompilecommands CMakeLib)
endif()
2015-04-27 22:25:09 +02:00
add_subdirectory(PseudoMemcheck)
2018-08-09 18:06:22 +02:00
add_executable(testAffinity testAffinity.cxx)
target_link_libraries(testAffinity CMakeLib)