summaryrefslogtreecommitdiff
path: root/codec/CMakeLists.txt
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2011-04-16 11:26:16 +0000
committerAntonin Descampe <antonin@gmail.com>2011-04-16 11:26:16 +0000
commit48fc70d4d16130ed296c541817f8affbaf0840a6 (patch)
tree2566ee0b5b2f1ada53b42805ffc4c08f9a412984 /codec/CMakeLists.txt
parentdbbad6f1b0e88e9e19661ea287130cec94cb410d (diff)
renamed "openjpeg3d" in "openjp3d"
Diffstat (limited to 'codec/CMakeLists.txt')
-rw-r--r--codec/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/codec/CMakeLists.txt b/codec/CMakeLists.txt
index 437b1e05..e5659947 100644
--- a/codec/CMakeLists.txt
+++ b/codec/CMakeLists.txt
@@ -16,14 +16,14 @@ 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} ${OPENJPEG3D_LIBRARY_NAME})
+ 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 OpenJPEG3DTargets
- DESTINATION ${OPENJPEG3D_INSTALL_BIN_DIR} COMPONENT Applications
+ EXPORT OpenJP3DTargets
+ DESTINATION ${OPENJP3D_INSTALL_BIN_DIR} COMPONENT Applications
)
ENDFOREACH(exe)