summaryrefslogtreecommitdiff
path: root/jpwl
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2007-09-06 10:23:40 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2007-09-06 10:23:40 +0000
commit976ca18103803150f6a9ca85b06c016826e83bf9 (patch)
tree7a1e4ac48d88320e5c6e7f5f5b26a279fd288b47 /jpwl
parent7e874368f7e620dc7934417776d3124932a8c417 (diff)
ENH: Add jpwl. Also remove old deprecated way of linking lib math on unix
Diffstat (limited to 'jpwl')
-rwxr-xr-xjpwl/CMakeLists.txt55
1 files changed, 55 insertions, 0 deletions
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)
+