2011-07-13 18:49:53 +02:00
|
|
|
# Build the demo app, small examples
|
2006-01-25 10:23:17 +01:00
|
|
|
|
|
|
|
# First thing define the common source:
|
2012-08-30 19:14:39 +02:00
|
|
|
set(common_SRCS
|
2006-01-25 10:23:17 +01:00
|
|
|
convert.c
|
2015-07-18 01:50:17 +02:00
|
|
|
convert.h
|
2014-12-20 19:45:53 +01:00
|
|
|
convertbmp.c
|
2007-11-27 13:38:52 +01:00
|
|
|
index.c
|
2015-07-18 01:50:17 +02:00
|
|
|
index.h
|
2012-09-28 10:11:41 +02:00
|
|
|
${OPENJPEG_SOURCE_DIR}/src/bin/common/color.c
|
2015-07-18 01:50:17 +02:00
|
|
|
${OPENJPEG_SOURCE_DIR}/src/bin/common/color.h
|
2012-09-28 10:11:41 +02:00
|
|
|
${OPENJPEG_SOURCE_DIR}/src/bin/common/opj_getopt.c
|
2015-07-18 01:50:17 +02:00
|
|
|
${OPENJPEG_SOURCE_DIR}/src/bin/common/opj_getopt.h
|
2015-09-25 22:04:58 +02:00
|
|
|
${OPENJPEG_SOURCE_DIR}/src/bin/common/opj_string.h
|
2006-01-25 10:23:17 +01:00
|
|
|
)
|
2016-05-02 16:03:16 +02:00
|
|
|
|
2015-07-14 23:51:02 +02:00
|
|
|
if(OPJ_HAVE_LIBTIFF)
|
|
|
|
list(APPEND common_SRCS converttif.c)
|
|
|
|
endif()
|
2015-07-19 17:42:11 +02:00
|
|
|
if(OPJ_HAVE_LIBPNG)
|
|
|
|
list(APPEND common_SRCS convertpng.c)
|
|
|
|
endif()
|
2006-01-25 10:23:17 +01:00
|
|
|
|
|
|
|
# Headers file are located here:
|
2012-08-30 19:14:39 +02:00
|
|
|
include_directories(
|
2012-10-01 09:49:52 +02:00
|
|
|
${OPENJPEG_BINARY_DIR}/src/lib/openjp2 # opj_config.h
|
2013-03-03 18:55:35 +01:00
|
|
|
${OPENJPEG_BINARY_DIR}/src/bin/common # opj_apps_config.h
|
2012-09-28 10:11:41 +02:00
|
|
|
${OPENJPEG_SOURCE_DIR}/src/lib/openjp2
|
|
|
|
${OPENJPEG_SOURCE_DIR}/src/bin/common
|
2012-09-28 11:26:51 +02:00
|
|
|
${LCMS_INCLUDE_DIRNAME}
|
2011-03-20 23:45:24 +01:00
|
|
|
${Z_INCLUDE_DIRNAME}
|
|
|
|
${PNG_INCLUDE_DIRNAME}
|
|
|
|
${TIFF_INCLUDE_DIRNAME}
|
2006-01-25 10:23:17 +01:00
|
|
|
)
|
2007-03-01 15:39:31 +01:00
|
|
|
|
2012-08-30 19:14:39 +02:00
|
|
|
if(WIN32)
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
add_definitions(-DOPJ_EXPORTS)
|
2012-08-30 19:20:03 +02:00
|
|
|
else()
|
2012-08-30 19:14:39 +02:00
|
|
|
add_definitions(-DOPJ_STATIC)
|
2012-08-30 19:20:03 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2011-01-02 19:10:09 +01:00
|
|
|
|
2006-01-25 10:23:17 +01:00
|
|
|
# Loop over all executables:
|
2012-09-28 11:12:22 +02:00
|
|
|
foreach(exe opj_decompress opj_compress opj_dump)
|
2012-08-30 19:14:39 +02:00
|
|
|
add_executable(${exe} ${exe}.c ${common_SRCS})
|
2017-11-14 11:45:09 +01:00
|
|
|
if(NOT ${CMAKE_VERSION} VERSION_LESS "2.8.12")
|
2017-05-23 15:12:19 +02:00
|
|
|
target_compile_options(${exe} PRIVATE ${OPENJP2_COMPILE_OPTIONS})
|
|
|
|
endif()
|
2012-08-30 19:20:03 +02:00
|
|
|
target_link_libraries(${exe} ${OPENJPEG_LIBRARY_NAME}
|
2012-03-02 11:01:00 +01:00
|
|
|
${PNG_LIBNAME} ${TIFF_LIBNAME} ${LCMS_LIBNAME}
|
2011-11-24 11:17:01 +01:00
|
|
|
)
|
2012-03-02 11:01:00 +01:00
|
|
|
# To support universal exe:
|
2012-08-30 19:14:39 +02:00
|
|
|
if(ZLIB_FOUND AND APPLE)
|
|
|
|
target_link_libraries(${exe} z)
|
2012-10-01 14:29:09 +02:00
|
|
|
else(ZLIB_FOUND AND APPLE)
|
2012-08-30 19:14:39 +02:00
|
|
|
target_link_libraries(${exe} ${Z_LIBNAME})
|
2012-08-30 19:20:03 +02:00
|
|
|
endif()
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2006-01-25 17:32:48 +01:00
|
|
|
# On unix you need to link to the math library:
|
2012-08-30 19:14:39 +02:00
|
|
|
if(UNIX)
|
|
|
|
target_link_libraries(${exe} m)
|
2016-05-25 21:39:21 +02:00
|
|
|
IF("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
|
|
|
|
target_link_libraries(${exe} rt)
|
|
|
|
endif()
|
2012-08-30 19:20:03 +02:00
|
|
|
endif()
|
2006-07-22 05:47:02 +02:00
|
|
|
# Install exe
|
2012-08-30 19:14:39 +02:00
|
|
|
install(TARGETS ${exe}
|
2010-06-29 21:08:58 +02:00
|
|
|
EXPORT OpenJPEGTargets
|
|
|
|
DESTINATION ${OPENJPEG_INSTALL_BIN_DIR} COMPONENT Applications
|
|
|
|
)
|
2014-10-15 12:24:49 +02:00
|
|
|
if(OPJ_USE_DSYMUTIL)
|
2016-05-02 16:03:16 +02:00
|
|
|
add_custom_command(TARGET ${exe} POST_BUILD
|
2014-11-25 22:52:24 +01:00
|
|
|
COMMAND "dsymutil" "$<TARGET_FILE:${exe}>"
|
|
|
|
COMMENT "dsymutil $<TARGET_FILE:${exe}>"
|
2014-10-15 12:24:49 +02:00
|
|
|
DEPENDS ${exe})
|
|
|
|
endif()
|
2012-08-30 19:20:03 +02:00
|
|
|
endforeach()
|
2006-01-25 10:23:17 +01:00
|
|
|
|
2014-04-28 09:34:26 +02:00
|
|
|
if(BUILD_DOC)
|
2010-11-17 11:59:21 +01:00
|
|
|
# Install man pages
|
2012-08-30 19:14:39 +02:00
|
|
|
install(
|
2012-09-28 11:12:22 +02:00
|
|
|
FILES ${OPENJPEG_SOURCE_DIR}/doc/man/man1/opj_compress.1
|
|
|
|
${OPENJPEG_SOURCE_DIR}/doc/man/man1/opj_decompress.1
|
|
|
|
${OPENJPEG_SOURCE_DIR}/doc/man/man1/opj_dump.1
|
2010-11-17 11:59:21 +01:00
|
|
|
DESTINATION ${OPENJPEG_INSTALL_MAN_DIR}/man1)
|
2012-03-02 11:01:00 +01:00
|
|
|
#
|
2014-04-28 09:34:26 +02:00
|
|
|
endif()
|