summaryrefslogtreecommitdiff
path: root/src/lib/openjp3d
diff options
context:
space:
mode:
authorJulien Malik <julien.malik@paraiso.me>2016-05-02 16:03:16 +0200
committerJulien Malik <julien.malik@paraiso.me>2016-05-02 16:05:41 +0200
commit17a0a8a195a9aad76a6bdb174edc8aa5fb8b7831 (patch)
tree73afe14427af5b3b7b65633f04a1b86128b54144 /src/lib/openjp3d
parentba0cf122f6820d38a7a5acc65b9d64392dd94e83 (diff)
Use lowercase for cmake commands consistenly
Inspired from https://github.com/InsightSoftwareConsortium/ITK/blob/master/Utilities/Maintenance/HowToCreateTheCMakeCaseConversion.txt This needs vim 7.3 and fails with vim 7.4 This also fixes a number of : - missing empty line at end of files - useless space at end of lines
Diffstat (limited to 'src/lib/openjp3d')
-rw-r--r--src/lib/openjp3d/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/openjp3d/CMakeLists.txt b/src/lib/openjp3d/CMakeLists.txt
index 0bbafea3..26bf1788 100644
--- a/src/lib/openjp3d/CMakeLists.txt
+++ b/src/lib/openjp3d/CMakeLists.txt
@@ -5,9 +5,9 @@ include_directories(
${OPENJPEG_BINARY_DIR}/src/lib/openjp2 # opj_config.h
)
-SET(OPENJP3D_LIBRARY_NAME openjp3d)
+set(OPENJP3D_LIBRARY_NAME openjp3d)
# Defines the source code for the library
-SET(OPENJP3D_SRCS
+set(OPENJP3D_SRCS
bio.c cio.c dwt.c event.c jp3d.c jp3d_lib.c mct.c mqc.c openjp3d.c
pi.c raw.c t1.c t1_3d.c t2.c tcd.c tgt.c volume.c
)
@@ -34,7 +34,7 @@ endif()
# Install library
install(TARGETS ${OPENJP3D_LIBRARY_NAME}
EXPORT OpenJP3DTargets
- DESTINATION ${OPENJPEG_INSTALL_LIB_DIR}
+ DESTINATION ${OPENJPEG_INSTALL_LIB_DIR}
COMPONENT Libraries
)