]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/gil/test/core/CMakeLists.txt
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / gil / test / core / CMakeLists.txt
1 #
2 # Copyright (c) 2017-2019 Mateusz Loskot <mateusz at loskot dot net>
3 #
4 # Distributed under the Boost Software License, Version 1.0.
5 # (See accompanying file LICENSE_1_0.txt or copy at
6 # http://www.boost.org/LICENSE_1_0.txt)
7 #
8 message(STATUS "Boost.GIL: Configuring tests in test/core")
9
10 foreach(_name
11 promote_integral
12 test_fixture)
13 set(_test t_utility_${_name})
14 set(_target test_utility_${_name})
15
16 add_executable(${_target} "")
17 target_sources(${_target} PRIVATE ${_name}.cpp)
18 target_link_libraries(${_target}
19 PRIVATE
20 gil_compile_options
21 gil_include_directories
22 gil_dependencies)
23 target_compile_definitions(${_target} PRIVATE BOOST_GIL_USE_CONCEPT_CHECK)
24 add_test(NAME ${_test} COMMAND ${_target})
25
26 unset(_name)
27 unset(_target)
28 unset(_test)
29 endforeach()
30
31 add_subdirectory(point)
32 add_subdirectory(channel)
33 add_subdirectory(color)
34 add_subdirectory(color_base)
35 add_subdirectory(pixel)
36 add_subdirectory(iterator)
37 add_subdirectory(locator)
38 add_subdirectory(image)
39 add_subdirectory(image_view)
40 add_subdirectory(algorithm)
41 add_subdirectory(image_processing)