summaryrefslogtreecommitdiff
path: root/applications/codec
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2011-11-24 10:17:01 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2011-11-24 10:17:01 +0000
commit3a8438e1f8fedbc7e4061a5bc1c81f9f5e15ccb7 (patch)
treebebaebb318cb27ee907b871ce09b1be80d58b870 /applications/codec
parent0e49c6affda012a18ea2a041e6c0c7626e56a17e (diff)
minor reindentation
Diffstat (limited to 'applications/codec')
-rw-r--r--applications/codec/CMakeLists.txt21
1 files changed, 11 insertions, 10 deletions
diff --git a/applications/codec/CMakeLists.txt b/applications/codec/CMakeLists.txt
index 77759f7b..92fb4ac6 100644
--- a/applications/codec/CMakeLists.txt
+++ b/applications/codec/CMakeLists.txt
@@ -30,7 +30,8 @@ ENDIF(WIN32)
FOREACH(exe j2k_to_image image_to_j2k j2k_dump)
ADD_EXECUTABLE(${exe} ${exe}.c ${common_SRCS})
TARGET_LINK_LIBRARIES(${exe} ${OPENJPEG_LIBRARY_NAME}
-${Z_LIBNAME} ${PNG_LIBNAME} ${TIFF_LIBNAME} ${LCMS_LIBNAME} )
+ ${Z_LIBNAME} ${PNG_LIBNAME} ${TIFF_LIBNAME} ${LCMS_LIBNAME}
+ )
# On unix you need to link to the math library:
IF(UNIX)
@@ -49,7 +50,6 @@ INSTALL(
${OPENJPEG_SOURCE_DIR}/doc/man/man1/j2k_dump.1
${OPENJPEG_SOURCE_DIR}/doc/man/man1/j2k_to_image.1
DESTINATION ${OPENJPEG_INSTALL_MAN_DIR}/man1)
-#
IF(BUILD_JPWL)
ADD_EXECUTABLE(JPWL_j2k_to_image
@@ -70,17 +70,18 @@ IF(BUILD_JPWL)
ENDIF(UNIX)
ADD_EXECUTABLE(JPWL_image_to_j2k
- image_to_j2k.c
- ${common_SRCS}
- )
+ image_to_j2k.c
+ ${common_SRCS}
+ )
SET_PROPERTY(
- TARGET JPWL_image_to_j2k
- APPEND PROPERTY COMPILE_DEFINITIONS USE_JPWL
- )
+ TARGET JPWL_image_to_j2k
+ APPEND PROPERTY COMPILE_DEFINITIONS USE_JPWL
+ )
TARGET_LINK_LIBRARIES(JPWL_image_to_j2k ${OPENJPEG_LIBRARY_NAME}_JPWL
- ${LCMS_LIBNAME} ${Z_LIBNAME} ${PNG_LIBNAME} ${TIFF_LIBNAME})
+ ${LCMS_LIBNAME} ${Z_LIBNAME} ${PNG_LIBNAME} ${TIFF_LIBNAME}
+ )
IF(UNIX)
TARGET_LINK_LIBRARIES(JPWL_image_to_j2k m)
@@ -89,4 +90,4 @@ IF(BUILD_JPWL)
INSTALL(TARGETS JPWL_image_to_j2k JPWL_j2k_to_image
DESTINATION ${OPENJPEG_INSTALL_BIN_DIR} COMPONENT Applications
)
-ENDIF(BUILD_JPWL) \ No newline at end of file
+ENDIF(BUILD_JPWL)