diff options
| author | Julien Malik <julien.malik@paraiso.me> | 2016-05-02 16:03:16 +0200 |
|---|---|---|
| committer | Julien Malik <julien.malik@paraiso.me> | 2016-05-02 16:05:41 +0200 |
| commit | 17a0a8a195a9aad76a6bdb174edc8aa5fb8b7831 (patch) | |
| tree | 73afe14427af5b3b7b65633f04a1b86128b54144 /src/bin/jp3d | |
| parent | ba0cf122f6820d38a7a5acc65b9d64392dd94e83 (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/bin/jp3d')
| -rw-r--r-- | src/bin/jp3d/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/bin/jp3d/CMakeLists.txt b/src/bin/jp3d/CMakeLists.txt index 5a35a169..3cac1a8f 100644 --- a/src/bin/jp3d/CMakeLists.txt +++ b/src/bin/jp3d/CMakeLists.txt @@ -1,7 +1,7 @@ # Build the demo app, small examples # First thing define the common source: -SET(common_SRCS +set(common_SRCS convert.c ${OPENJPEG_SOURCE_DIR}/src/bin/common/opj_getopt.c ) @@ -26,15 +26,15 @@ if(WIN32) endif() # Loop over all executables: -FOREACH(exe opj_jp3d_compress opj_jp3d_decompress) - ADD_EXECUTABLE(${exe} ${exe}.c ${common_SRCS}) - TARGET_LINK_LIBRARIES(${exe} openjp3d) +foreach(exe opj_jp3d_compress opj_jp3d_decompress) + add_executable(${exe} ${exe}.c ${common_SRCS}) + target_link_libraries(${exe} openjp3d) # On unix you need to link to the math library: - IF(UNIX) - TARGET_LINK_LIBRARIES(${exe} m) - ENDIF(UNIX) + if(UNIX) + target_link_libraries(${exe} m) + endif(UNIX) # Install exe - INSTALL(TARGETS ${exe} + install(TARGETS ${exe} EXPORT OpenJP3DTargets DESTINATION ${OPENJPEG_INSTALL_BIN_DIR} COMPONENT Applications ) |
