gil/test/core/CMakeLists.txt
MIRAL SHAH 716fe9ad8c Implement algorithms for binary and binary inverse thresholding (#313)
Add public functions threshold_binary and threshold_truncate.
Add tests and example.
Closes #310
2019-06-18 21:42:43 +02:00

41 lines
1.1 KiB
CMake

#
# Copyright (c) 2017-2019 Mateusz Loskot <mateusz at loskot dot net>
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
message(STATUS "Boost.GIL: Configuring tests in test/core")
foreach(_name
promote_integral)
set(_test t_utility_${_name})
set(_target test_utility_${_name})
add_executable(${_target} "")
target_sources(${_target} PRIVATE ${_name}.cpp)
target_link_libraries(${_target}
PRIVATE
gil_compile_options
gil_include_directories
gil_dependencies)
target_compile_definitions(${_target} PRIVATE BOOST_GIL_USE_CONCEPT_CHECK)
add_test(NAME ${_test} COMMAND ${_target})
unset(_name)
unset(_target)
unset(_test)
endforeach()
add_subdirectory(point)
add_subdirectory(channel)
add_subdirectory(color)
add_subdirectory(color_base)
add_subdirectory(pixel)
add_subdirectory(iterator)
add_subdirectory(locator)
add_subdirectory(image)
add_subdirectory(image_view)
add_subdirectory(algorithm)
add_subdirectory(image_processing)