summaryrefslogtreecommitdiff
path: root/codec
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
parentdbbad6f1b0e88e9e19661ea287130cec94cb410d (diff)
renamed "openjpeg3d" in "openjp3d"
Diffstat (limited to 'codec')
-rw-r--r--codec/CMakeLists.txt6
-rwxr-xr-xcodec/convert.c2
-rwxr-xr-xcodec/jp3d_to_volume.c2
-rwxr-xr-xcodec/volume_to_jp3d.c2
4 files changed, 6 insertions, 6 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)
diff --git a/codec/convert.c b/codec/convert.c
index ff4dec3b..e6131381 100755
--- a/codec/convert.c
+++ b/codec/convert.c
@@ -31,7 +31,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include "openjpeg3d.h"
+#include "openjp3d.h"
#ifdef _WIN32
#include "windirent.h"
#else
diff --git a/codec/jp3d_to_volume.c b/codec/jp3d_to_volume.c
index e133d876..7afb4488 100755
--- a/codec/jp3d_to_volume.c
+++ b/codec/jp3d_to_volume.c
@@ -33,7 +33,7 @@
#include <stdlib.h>
#include <math.h>
-#include "openjpeg3d.h"
+#include "openjp3d.h"
#include "getopt.h"
#include "convert.h"
diff --git a/codec/volume_to_jp3d.c b/codec/volume_to_jp3d.c
index acfcd10e..8a593b37 100755
--- a/codec/volume_to_jp3d.c
+++ b/codec/volume_to_jp3d.c
@@ -32,7 +32,7 @@
#include <string.h>
#include <stdlib.h>
-#include "openjpeg3d.h"
+#include "openjp3d.h"
#include "getopt.h"
#include "convert.h"