d7884ee1a6
Align with `subsampled_view` overloads accepting `point_t` and `coord_t` Both types are based on `std::ptrdiff_t`. Fixes compilation warnings. Tidy up `subimage_view` and `subsampled_view` with trailing return. Add tests for `subimage_view` in core and dynamic_image extension. (First tests for the dynamic_image, hurray! :)) Add explicit cast to double in division operator for point<T> to fix compilation warnings.
23 lines
480 B
CMake
23 lines
480 B
CMake
#
|
|
# Copyright (c) 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)
|
|
#
|
|
if(GIL_ENABLE_EXT_DYNAMIC_IMAGE)
|
|
add_subdirectory(dynamic_image)
|
|
endif()
|
|
|
|
if(GIL_ENABLE_EXT_NUMERIC)
|
|
add_subdirectory(numeric)
|
|
endif()
|
|
|
|
if(GIL_ENABLE_EXT_TOOLBOX)
|
|
add_subdirectory(toolbox)
|
|
endif()
|
|
|
|
if(GIL_ENABLE_EXT_IO)
|
|
add_subdirectory(io)
|
|
endif()
|