1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# Copyright 2016, The libsigc++ Development Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
enable_testing ()
set (TEST_SOURCE_FILES
test_accum_iter.cc
test_accumulated.cc
test_bind_as_slot.cc
test_bind.cc
test_bind_ref.cc
test_bind_refptr.cc
test_bind_return.cc
test_compose.cc
test_connection.cc
test_copy_invalid_slot.cc
test_cpp11_lambda.cc
test_custom.cc
test_disconnect.cc
test_disconnect_during_emit.cc
test_exception_catch.cc
test_hide.cc
test_limit_reference.cc
test_member_method_trait.cc
test_mem_fun.cc
test_ptr_fun.cc
test_retype.cc
test_retype_return.cc
test_rvalue_ref.cc
test_signal.cc
test_signal_move.cc
test_size.cc
test_slot.cc
test_slot_disconnect.cc
test_slot_move.cc
test_trackable.cc
test_trackable_move.cc
test_track_obj.cc
test_tuple_cdr.cc
test_tuple_end.cc
test_tuple_for_each.cc
test_tuple_start.cc
test_tuple_transform_each.cc
test_visit_each.cc
test_visit_each_trackable.cc
test_weak_raw_ptr.cc)
function (add_sigcpp_test TEST_SOURCE_FILE)
get_filename_component (test_name ${TEST_SOURCE_FILE} NAME_WE)
add_executable (${test_name} ${TEST_SOURCE_FILE} testutilities.cc)
target_link_libraries (${test_name} sigc-${SIGCXX_API_VERSION})
add_test (NAME ${test_name}
# Help MSVC to find the library that the tests should link against.
COMMAND ${CMAKE_COMMAND} -E env "PATH=$<TARGET_FILE_DIR:sigc-${SIGCXX_API_VERSION}>;$ENV{PATH}" $<TARGET_FILE:${test_name}>)
if (MSVC AND test_name MATCHES "^(test_retype_return|test_signal)$")
target_compile_options(${test_name} PRIVATE "/wd4244")
endif()
endfunction (add_sigcpp_test)
foreach (test_file ${TEST_SOURCE_FILES})
add_sigcpp_test (${test_file})
endforeach()
|