diff --git a/CMakeLists.txt b/CMakeLists.txt index 0adeef7e..e9ac7f70 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,6 +54,7 @@ INCLUDE_DIRECTORIES(BEFORE ${CMAKE_CURRENT_BINARY_DIR}) SUBDIRS( libopenjpeg mj2 + jpwl ) #----------------------------------------------------------------------------- # Build example only if requested diff --git a/codec/CMakeLists.txt b/codec/CMakeLists.txt index 24058463..7cb80904 100644 --- a/codec/CMakeLists.txt +++ b/codec/CMakeLists.txt @@ -44,7 +44,7 @@ FOREACH(exe j2k_to_image image_to_j2k) TARGET_LINK_LIBRARIES(${exe} ${OPJ_PREFIX}openjpeg ${TIFF_LIBRARIES}) # On unix you need to link to the math library: IF(UNIX) - TARGET_LINK_LIBRARIES(${exe} -lm) + TARGET_LINK_LIBRARIES(${exe} m) ENDIF(UNIX) # Install exe INSTALL_TARGETS(/bin/ ${exe}) diff --git a/jpwl/CMakeLists.txt b/jpwl/CMakeLists.txt new file mode 100755 index 00000000..591c95f5 --- /dev/null +++ b/jpwl/CMakeLists.txt @@ -0,0 +1,55 @@ +# Makefile for the main JPWL OpenJPEG codecs: JPWL_ j2k_to_image and JPWL_image_to_j2k + +ADD_DEFINITIONS(-DUSE_JPWL) + +SET(OPJ_SRCS +../libopenjpeg/bio.c +../libopenjpeg/cio.c +../libopenjpeg/dwt.c +../libopenjpeg/event.c +../libopenjpeg/image.c +../libopenjpeg/j2k.c +../libopenjpeg/j2k_lib.c +../libopenjpeg/jp2.c +../libopenjpeg/jpt.c +../libopenjpeg/mct.c +../libopenjpeg/mqc.c +../libopenjpeg/openjpeg.c +../libopenjpeg/pi.c +../libopenjpeg/raw.c +../libopenjpeg/t1.c +../libopenjpeg/t2.c +../libopenjpeg/tcd.c +../libopenjpeg/tgt.c +) +SET(JPWL_SRCS crc.c jpwl.c jpwl_lib.c rs.c) + +ADD_LIBRARY(openjpeg_JPWL ${JPWL_SRCS} ${OPJ_SRCS}) + +# Do the proper thing when building static...if only there was configured +# headers or def files instead +#IF(NOT BUILD_SHARED_LIBS) +# ADD_DEFINITIONS(-DOPJ_STATIC) +#ENDIF(NOT BUILD_SHARED_LIBS) + +INCLUDE_DIRECTORIES( + ${OPENJPEG_SOURCE_DIR}/libopenjpeg + ) + +FIND_PACKAGE(TIFF REQUIRED) + +ADD_EXECUTABLE(JPWL_j2k_to_image +../codec/convert.c ../codec/j2k_to_image.c +) +TARGET_LINK_LIBRARIES(JPWL_j2k_to_image openjpeg_JPWL ${TIFF_LIBRARIES}) +IF(UNIX) + TARGET_LINK_LIBRARIES(JPWL_j2k_to_image m) +ENDIF(UNIX) + +ADD_EXECUTABLE(JPWL_image_to_j2k +../codec/convert.c ../codec/image_to_j2k.c) +TARGET_LINK_LIBRARIES(JPWL_image_to_j2k openjpeg_JPWL ${TIFF_LIBRARIES}) +IF(UNIX) + TARGET_LINK_LIBRARIES(JPWL_image_to_j2k m) +ENDIF(UNIX) +