You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.2 KiB
CMake

# CMake build system for exiv2 library and executables
13 years ago
# Copyright 2008 by Patrick Spendrin <ps_ml@gmx.de>
# Copyright 2010-2012 by Gilles Caulier <caulier dot gilles at gmail dot com>
#
13 years ago
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
15 years ago
SET( SAMPLES addmoddel.cpp
convert-test.cpp
easyaccess-test.cpp
15 years ago
exifcomment.cpp
exifdata-test.cpp
exifprint.cpp
iotest.cpp
iptceasy.cpp
iptcprint.cpp
iptctest.cpp
key-test.cpp
largeiptc-test.cpp
mmap-test.cpp
prevtest.cpp
stringto-test.cpp
tiff-test.cpp
werror-test.cpp
15 years ago
write-test.cpp
write2-test.cpp
xmpparse.cpp
xmpparser-test.cpp
xmpsample.cpp
)
15 years ago
FOREACH(entry ${SAMPLES})
STRING( REPLACE ".cpp" "" target ${entry})
ADD_EXECUTABLE( ${target} ${target}.cpp )
ADD_TEST( ${target}_test ${target} )
TARGET_LINK_LIBRARIES( ${target} exiv2 )
ENDFOREACH(entry ${SAMPLES})