# # This file is part of Corrade. # # Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, # 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 # Vladimír Vondruš # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. # # IDE folder in VS, Xcode etc. CMake 3.12+, older versions have only the FOLDER # property that would have to be set on each target separately. set(CMAKE_FOLDER "Corrade/TestSuite") set(CorradeTestSuite_SRCS Comparator.cpp Tester.cpp Compare/File.cpp Compare/FileToString.cpp Compare/FloatingPoint.cpp Compare/String.cpp Compare/StringToFile.cpp) set(CorradeTestSuite_HEADERS Comparator.h Tester.h TestSuite.h visibility.h) set(CorradeTestSuite_PRIVATE_HEADERS Implementation/BenchmarkCounters.h Implementation/BenchmarkStats.h) # Objects shared between main and test library add_library(CorradeTestSuiteObjects OBJECT ${CorradeTestSuite_SRCS} ${CorradeTestSuite_HEADERS} ${CorradeTestSuite_PRIVATE_HEADERS}) target_include_directories(CorradeTestSuiteObjects PUBLIC $) if(NOT CORRADE_BUILD_STATIC) target_compile_definitions(CorradeTestSuiteObjects PRIVATE "-DCorradeTestSuiteObjects_EXPORTS") endif() if(NOT CORRADE_BUILD_STATIC OR CORRADE_BUILD_STATIC_PIC) set_target_properties(CorradeTestSuiteObjects PROPERTIES POSITION_INDEPENDENT_CODE ON) endif() if(CORRADE_TARGET_EMSCRIPTEN) # Since (probably) 1.38.36, the compiler needs to have exceptions enabled # as well (not just the linker), and directly for the TestSuite library. # For the test target it's done explicitly inside UseCorrade.cmake. Wasn't # needed with 1.38.32. # TODO target_link_options() and target_compile_options() and drop the # related set_property() call in UseCorrade once we require CMake 3.13 # unconditionally set_property(TARGET CorradeTestSuiteObjects APPEND_STRING PROPERTY COMPILE_FLAGS " -s DISABLE_EXCEPTION_CATCHING=0") endif() # Main TestSuite library add_library(CorradeTestSuite ${SHARED_OR_STATIC} $ ${_CORRADE_OBJECT_ONLY_TARGET_DUMMY_CPP}) # XCode workaround set_target_properties(CorradeTestSuite PROPERTIES DEBUG_POSTFIX "-d") if(NOT CORRADE_BUILD_STATIC) set_target_properties(CorradeTestSuite PROPERTIES VERSION ${CORRADE_LIBRARY_VERSION} SOVERSION ${CORRADE_LIBRARY_SOVERSION}) elseif(CORRADE_BUILD_STATIC_PIC) set_target_properties(CorradeTestSuite PROPERTIES POSITION_INDEPENDENT_CODE ON) endif() target_link_libraries(CorradeTestSuite PUBLIC CorradeUtility) install(TARGETS CorradeTestSuite RUNTIME DESTINATION ${CORRADE_BINARY_INSTALL_DIR} LIBRARY DESTINATION ${CORRADE_LIBRARY_INSTALL_DIR} ARCHIVE DESTINATION ${CORRADE_LIBRARY_INSTALL_DIR}) install(FILES ${CorradeTestSuite_HEADERS} DESTINATION ${CORRADE_INCLUDE_INSTALL_DIR}/TestSuite) if(CORRADE_TESTSUITE_TARGET_XCTEST) install(FILES XCTestRunner.mm.in DESTINATION ${CORRADE_DATA_INSTALL_DIR}/TestSuite) elseif(CORRADE_TARGET_ANDROID) install(PROGRAMS AdbRunner.sh DESTINATION ${CORRADE_DATA_INSTALL_DIR}/TestSuite) elseif(CORRADE_TARGET_EMSCRIPTEN) install(FILES EmscriptenRunner.html.in DESTINATION ${CORRADE_DATA_INSTALL_DIR}/TestSuite) endif() add_subdirectory(Compare) if(CORRADE_BUILD_TESTS) # Library that links against CorradeUtilityTestLib instead of # CorradeUtility for testing. No other difference. Not actually used by any # TestSuite tests, but a special case needed only by the Utility library # -- since TestSuite depends on Utility, Utility tests that would link to # CorradeTestSuite would get CorradeUtility in addition to # CorradeUtilityTestLib, leading to ODR violations and subsequently ASan # complaints. add_library(CorradeTestSuiteTestLib ${SHARED_OR_STATIC} ${EXCLUDE_FROM_ALL_IF_TEST_TARGET} $ ${_CORRADE_OBJECT_ONLY_TARGET_DUMMY_CPP}) # XCode workaround target_include_directories(CorradeTestSuiteTestLib PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) set_target_properties(CorradeTestSuiteTestLib PROPERTIES DEBUG_POSTFIX "-d") if(CORRADE_BUILD_STATIC_PIC) set_target_properties(CorradeTestSuiteTestLib PROPERTIES POSITION_INDEPENDENT_CODE ON) endif() target_link_libraries(CorradeTestSuiteTestLib PUBLIC CorradeUtilityTestLib) add_subdirectory(Test ${EXCLUDE_FROM_ALL_IF_TEST_TARGET}) endif() # Corrade::TestSuite target alias for superprojects add_library(Corrade::TestSuite ALIAS CorradeTestSuite)