cmake/Tests/CMakeLib/CMakeLists.txt

55 lines
1.5 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
)
set(CMakeLib_TESTS
2018-04-23 21:13:27 +02:00
testGeneratedFileStream.cxx
testRST.cxx
testSystemTools.cxx
testUTF8.cxx
testXMLParser.cxx
testXMLSafe.cxx
testFindPackageCommand.cxx
testUVRAII.cxx
2010-03-17 14:00:29 +02:00
)
2015-04-27 22:25:09 +02:00
set(testRST_ARGS ${CMAKE_CURRENT_SOURCE_DIR})
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})
target_link_libraries(CMakeLibTests CMakeLib)
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)
2015-04-27 22:25:09 +02:00
add_test(CMakeLib.${test} 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)