cmake/Tests/CMakeLib/CMakeLists.txt

57 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
2012-04-19 19:04:21 +03:00
testGeneratedFileStream
2014-08-03 19:52:23 +02:00
testRST
2012-04-19 19:04:21 +03:00
testSystemTools
2010-03-17 14:00:29 +02:00
testUTF8
testXMLParser
testXMLSafe
2016-10-30 18:24:19 +01:00
testFindPackageCommand
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
testVisualStudioSlnParser
)
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)
2017-04-14 19:02:05 +02:00
add_executable(testEncoding testEncoding.cxx)
target_link_libraries(testEncoding cmsys)
2010-03-17 14:00:29 +02:00
# Xcode 2.x forgets to create the output directory before linking
# the individual architectures.
if(CMAKE_OSX_ARCHITECTURES AND XCODE
AND NOT "${XCODE_VERSION}" MATCHES "^[^12]")
add_custom_command(
TARGET CMakeLibTests
PRE_BUILD COMMAND ${CMAKE_COMMAND} -E make_directory "${CMAKE_CFG_INTDIR}"
)
endif()
foreach(test ${CMakeLib_TESTS})
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)