summaryrefslogtreecommitdiff
path: root/codec/CMakeLists.txt
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2012-09-28 08:32:34 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2012-09-28 08:32:34 +0000
commit03d1a401647b2e338694d6269d8ddf4e9469efbd (patch)
treeaa5a266eb0e4004c548acc317289e236dc8edbf8 /codec/CMakeLists.txt
parent32773fa638585182c6d82123f61efb7cfd71fb3c (diff)
[trunk] FolderReorgProposal task: add JP3Dopenjp3d
Update issue 177
Diffstat (limited to 'codec/CMakeLists.txt')
-rw-r--r--codec/CMakeLists.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/codec/CMakeLists.txt b/codec/CMakeLists.txt
deleted file mode 100644
index e5659947..00000000
--- a/codec/CMakeLists.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-# Build the demo app, small examples
-
-# First thing define the common source:
-SET(common_SRCS
- convert.c
- )
-
-IF(WIN32)
- IF(BUILD_SHARED_LIBS)
- ADD_DEFINITIONS(-DOPJ_EXPORTS)
- ELSE(BUILD_SHARED_LIBS)
- ADD_DEFINITIONS(-DOPJ_STATIC)
- ENDIF(BUILD_SHARED_LIBS)
-ENDIF(WIN32)
-
-# Loop over all executables:
-FOREACH(exe jp3d_to_volume volume_to_jp3d)
- ADD_EXECUTABLE(${exe} ${exe}.c ${common_SRCS})
- TARGET_LINK_LIBRARIES(${exe} ${OPENJP3D_LIBRARY_NAME})
- # On unix you need to link to the math library:
- IF(UNIX)
- TARGET_LINK_LIBRARIES(${exe} m)
- ENDIF(UNIX)
- # Install exe
- INSTALL(TARGETS ${exe}
- EXPORT OpenJP3DTargets
- DESTINATION ${OPENJP3D_INSTALL_BIN_DIR} COMPONENT Applications
- )
-ENDFOREACH(exe)