diff options
| author | Even Rouault <even.rouault@mines-paris.org> | 2017-05-23 16:15:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-23 16:15:55 +0200 |
| commit | 53d46fc7330ed652db66aa37b498fbfa27be625c (patch) | |
| tree | f5b9b8aca95f11a51c37386c9bd2917606140550 /src/bin | |
| parent | 6e97d877b155aff55d1ae1fef4a36fa56d51e472 (diff) | |
| parent | a8ca7c51f38a4cbdcb4a541137478df03e5eb76d (diff) | |
Merge pull request #936 from rouault/master_warnings
CMake: add stronger warnings for openjp2 lib/bin by default, and error out on declaration-after-statement
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/jp2/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bin/jp2/CMakeLists.txt b/src/bin/jp2/CMakeLists.txt index ad7bce71..4324c36d 100644 --- a/src/bin/jp2/CMakeLists.txt +++ b/src/bin/jp2/CMakeLists.txt @@ -44,6 +44,9 @@ endif() # Loop over all executables: foreach(exe opj_decompress opj_compress opj_dump) add_executable(${exe} ${exe}.c ${common_SRCS}) + if(${CMAKE_VERSION} VERSION_GREATER "2.8.11") + target_compile_options(${exe} PRIVATE ${OPENJP2_COMPILE_OPTIONS}) + endif() target_link_libraries(${exe} ${OPENJPEG_LIBRARY_NAME} ${PNG_LIBNAME} ${TIFF_LIBNAME} ${LCMS_LIBNAME} ) |
