#.rst: # ECMAddTests # ----------- # # Convenience functions for adding tests. # # :: # # ecm_add_tests( LINK_LIBRARIES [ [...]] # [NAME_PREFIX ] # [GUI]) # # A convenience function for adding multiple tests, each consisting of a # single source file. For each file in , an executable target will be # created (the name of which will be the basename of the source file). This # will be linked against the libraries given with LINK_LIBRARIES. Each # executable will be added as a test with the same name. # # If NAME_PREFIX is given, this prefix will be prepended to the test names, but # not the target names. As a result, it will not prevent clashes between tests # with the same name in different parts of the project, but it can be used to # give an indication of where to look for a failing test. # # If the flag GUI is passed the test binaries will be GUI executables, otherwise # the resulting binaries will be console applications (regardless of the value # of CMAKE_WIN32_EXECUTABLE or CMAKE_MACOSX_BUNDLE). Be aware that this changes # the executable entry point on Windows (although some frameworks, such as Qt, # abstract this difference away). # # The generated target executables will have the effects of ecm_mark_as_test() # (from the :module:`ECMMarkAsTest` module) applied to it. # # :: # # ecm_add_test( LINK_LIBRARIES [ [...]] # [TEST_NAME ] # [NAME_PREFIX ] # [GUI]) # # This is a single-test form of ecm_add_tests that allows multiple source files # to be used for a single test. If using multiple source files, TEST_NAME must # be given; this will be used for both the target and test names (and, as with # ecm_add_tests(), the NAME_PREFIX argument will be prepended to the test name). # # # Since pre-1.0.0. #============================================================================= # Copyright 2013 Alexander Richardson # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file COPYING-CMAKE-SCRIPTS for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of extra-cmake-modules, substitute the full # License text for the above reference.) include(CMakeParseArguments) include(ECMMarkAsTest) include(ECMMarkNonGuiExecutable) function(ecm_add_test) set(options GUI) set(oneValueArgs TEST_NAME NAME_PREFIX) set(multiValueArgs LINK_LIBRARIES) cmake_parse_arguments(ECM_ADD_TEST "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) set(_sources ${ECM_ADD_TEST_UNPARSED_ARGUMENTS}) list(LENGTH _sources _sourceCount) if(ECM_ADD_TEST_TEST_NAME) set(_targetname ${ECM_ADD_TEST_TEST_NAME}) elseif(${_sourceCount} EQUAL "1") #use the source file name without extension as the testname get_filename_component(_targetname ${_sources} NAME_WE) else() #more than one source file passed, but no test name given -> error message(FATAL_ERROR "ecm_add_test() called with multiple source files but without setting \"TEST_NAME\"") endif() set(_testname "${ECM_ADD_TEST_NAME_PREFIX}${_targetname}") set(gui_args) if(ECM_ADD_TEST_GUI) set(gui_args WIN32 MACOSX_BUNDLE) endif() add_executable(${_targetname} ${gui_args} ${_sources}) if(NOT ECM_ADD_TEST_GUI) ecm_mark_nongui_executable(${_targetname}) endif() add_test(NAME ${_testname} COMMAND ${_targetname}) target_link_libraries(${_targetname} ${ECM_ADD_TEST_LINK_LIBRARIES}) ecm_mark_as_test(${_targetname}) endfunction() function(ecm_add_tests) set(options GUI) set(oneValueArgs NAME_PREFIX) set(multiValueArgs LINK_LIBRARIES) cmake_parse_arguments(ECM_ADD_TESTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) if(ECM_ADD_TESTS_GUI) set(_exe_type GUI) else() set(_exe_type "") endif() foreach(_test_source ${ECM_ADD_TESTS_UNPARSED_ARGUMENTS}) ecm_add_test(${_test_source} NAME_PREFIX ${ECM_ADD_TESTS_NAME_PREFIX} LINK_LIBRARIES ${ECM_ADD_TESTS_LINK_LIBRARIES} ${_exe_type} ) endforeach() endfunction()