CMake: drop support for cmake < 3.5
[openjpeg.git] / tools / ctest_scripts / travis-ci.cmake
index a95b5a0009ec8a81e144f4397d9d2a93bdad80ef..7d1c9f32502339b41248a0243dac7f15af2bad6c 100644 (file)
@@ -4,7 +4,7 @@
 # Results will be available at: http://my.cdash.org/index.php?project=OPENJPEG
 # -----------------------------------------------------------------------------
 
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.5)
 
 set( ENV{LANG} en_US.UTF-8)
 if($ENV{OPJ_BINARY_DIR})
@@ -12,7 +12,16 @@ if($ENV{OPJ_BINARY_DIR})
 else()
        set( CTEST_DASHBOARD_ROOT  "$ENV{PWD}/build" )
 endif()
-set( CTEST_CMAKE_GENERATOR "Unix Makefiles")   # Always makefile in travis-ci environment
+
+if("$ENV{OPJ_SHORT_OS_NAME}" STREQUAL "windows")
+       set( CTEST_CMAKE_GENERATOR "NMake Makefiles")
+       set( CTEST_BUILD_COMMAND   "nmake" )
+       set( JPYLYZER_EXT          "exe"  )
+else()
+       set( CTEST_CMAKE_GENERATOR "Unix Makefiles")   # Always makefile in travis-ci environment
+       set( CCFLAGS_WARNING "-Wall -Wextra -Wconversion -Wno-unused-parameter -Wdeclaration-after-statement -Werror=declaration-after-statement")
+       set( JPYLYZER_EXT          "py"  )
+endif()
 
 if ("$ENV{OPJ_BUILD_CONFIGURATION}" STREQUAL "")
   set( CTEST_BUILD_CONFIGURATION "Release")
@@ -44,6 +53,11 @@ if (NOT "$ENV{OPJ_CI_ARCH}" STREQUAL "")
        endif()
 endif()
 
+if (NOT "$ENV{OPJ_CI_INSTRUCTION_SETS}" STREQUAL "")
+       set(CCFLAGS_ARCH "${CCFLAGS_ARCH} $ENV{OPJ_CI_INSTRUCTION_SETS}")
+endif()
+
+
 if ("$ENV{OPJ_CI_ASAN}" STREQUAL "1")
        set(OPJ_HAS_MEMCHECK TRUE)
        set(CTEST_MEMORYCHECK_TYPE "AddressSanitizer")
@@ -60,8 +74,8 @@ if("$ENV{CC}" MATCHES ".*mingw.*")
 endif()
 
 if(NOT "$ENV{OPJ_CI_SKIP_TESTS}" STREQUAL "1")
-       # To execute part of the encoding test suite, kakadu binaries are needed to decode encoded image and compare 
-       # it to the baseline. Kakadu binaries are freely available for non-commercial purposes 
+       # To execute part of the encoding test suite, kakadu binaries are needed to decode encoded image and compare
+       # it to the baseline. Kakadu binaries are freely available for non-commercial purposes
        # at http://www.kakadusoftware.com.
        # Here's the copyright notice from kakadu:
        # Copyright is owned by NewSouth Innovations Pty Limited, commercial arm of the UNSW Australia in Sydney.
@@ -70,39 +84,64 @@ if(NOT "$ENV{OPJ_CI_SKIP_TESTS}" STREQUAL "1")
        # Note: Binaries can only be used for non-commercial purposes.
        if ("$ENV{OPJ_NONCOMMERCIAL}" STREQUAL "1" )
                set(KDUPATH $ENV{PWD}/kdu)
-               set(ENV{LD_LIBRARY_PATH} ${KDUPATH})
-               set(ENV{PATH} $ENV{PATH}:${KDUPATH})
+               if("$ENV{OPJ_SHORT_OS_NAME}" STREQUAL "windows")
+                       set(ENV{PATH} "$ENV{PATH};${KDUPATH}")
+               else()
+                       set(ENV{LD_LIBRARY_PATH} ${KDUPATH})
+                       set(ENV{PATH} $ENV{PATH}:${KDUPATH})
+               endif()
        endif()
        set(BUILD_TESTING "TRUE")
 else()
        set(BUILD_TESTING "FALSE")
 endif(NOT "$ENV{OPJ_CI_SKIP_TESTS}" STREQUAL "1")
 
-# Options 
+
+if("$ENV{OPJ_CI_CHECK_STYLE}" STREQUAL "1")
+       set(BUILD_ASTYLE "TRUE")
+else()
+       set(BUILD_ASTYLE "FALSE")
+endif("$ENV{OPJ_CI_CHECK_STYLE}" STREQUAL "1")
+
+# Options
 set( CACHE_CONTENTS "
 
 # Build kind
 CMAKE_BUILD_TYPE:STRING=${CTEST_BUILD_CONFIGURATION}
 
 # Warning level
-CMAKE_C_FLAGS:STRING= ${CCFLAGS_ARCH} -Wall -Wextra -Wconversion -Wno-unused-parameter -Wdeclaration-after-statement
+CMAKE_C_FLAGS:STRING= ${CCFLAGS_ARCH} ${CCFLAGS_WARNING}
+
+# For astyle
+CMAKE_CXX_FLAGS:STRING= ${CCFLAGS_ARCH}
 
 # Use to activate the test suite
 BUILD_TESTING:BOOL=${BUILD_TESTING}
 
-# Build Thirdparty, useful but not required for test suite 
+# Build Thirdparty, useful but not required for test suite
 BUILD_THIRDPARTY:BOOL=TRUE
 
+# Build unit tests that test subcomponents of libopenjp2 (e.g. DWT)
+BUILD_UNIT_TESTS:BOOL=TRUE
+
 # JPEG2000 test files are available with git clone https://github.com/uclouvain/openjpeg-data.git
 OPJ_DATA_ROOT:PATH=$ENV{PWD}/data
 
-# jpylyzer is available with on GitHub: https://github.com/openpreserve/jpylyzer  
-JPYLYZER_EXECUTABLE=$ENV{PWD}/jpylyzer/jpylyzer/jpylyzer.py
-
+# Enable astyle
+WITH_ASTYLE:BOOL=${BUILD_ASTYLE}
 " )
 
+if(EXISTS "$ENV{PWD}/jpylyzer/jpylyzer.${JPYLYZER_EXT}")
+    set(CACHE_CONTENTS "
+${CACHE_CONTENTS}
+
+# jpylyzer is available with on GitHub: https://github.com/openpreserve/jpylyzer
+JPYLYZER_EXECUTABLE=$ENV{PWD}/jpylyzer/jpylyzer.${JPYLYZER_EXT}
+")
+endif()
+
 #---------------------
-#1. openjpeg specific: 
+#1. openjpeg specific:
 set( CTEST_PROJECT_NAME        "OPENJPEG" )
 if(NOT EXISTS $ENV{OPJ_SOURCE_DIR})
        message(FATAL_ERROR "OPJ_SOURCE_DIR not defined or does not exist:$ENV{OPJ_SOURCE_DIR}")