2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-01 20:42:10 +00:00

merge of cmake build files from trunk per beman

[SVN r50756]
This commit is contained in:
Troy D. Straszheim
2009-01-24 18:57:20 +00:00
parent ab7f23636b
commit 44871518f5
3 changed files with 32 additions and 0 deletions

22
CMakeLists.txt Normal file
View File

@@ -0,0 +1,22 @@
#----------------------------------------------------------------------------
# This file was automatically generated from the original CMakeLists.txt file
# Add a variable to hold the headers for the library
set (lib_headers
gil
)
# Add a library target to the build system
boost_library_project(
gil
# SRCDIRS
TESTDIRS test
HEADERS ${lib_headers}
# DOCDIRS
DESCRIPTION "Generic Image Library"
MODULARIZED
AUTHORS "Lubomir Bourdev <lbourdev -at- adobe.com>"
"Hailin Jin <hljin -at- adobe.com>"
# MAINTAINERS
)

1
module.cmake Normal file
View File

@@ -0,0 +1 @@
boost_module (gil DEPENDS type_traits mpl)

9
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
boost_additional_test_dependencies(gil BOOST_DEPENDS test lambda crc)
add_definitions(-DBOOST_GIL_NO_IO -D_SCL_SECURE_NO_WARNINGS)
boost_test_run(channel channel.cpp error_if.cpp)
boost_test_run(image image.cpp sample_image.cpp error_if.cpp)
boost_test_run(image_io image_io.cpp error_if.cpp)
boost_test_run(pixel pixel.cpp error_if.cpp)
boost_test_run(pixel_iterator pixel_iterator.cpp error_if.cpp)