Build: make sure that -DBUILD_SHARED_LIBS:bool=off is honoured to build only the...
[openjpeg.git] / CMakeLists.txt
1 # Main CMakeLists.txt to build the OpenJPEG project using CMake (www.cmake.org)
2 # Written by Mathieu Malaterre
3
4 # This CMake project will by default create a library called openjpeg
5 # But if you want to use this project within your own (CMake) project
6 # you will eventually like to prefix the library to avoid linking confusion
7 # For this purpose you can define a CMake var: OPENJPEG_NAMESPACE to whatever you like
8 # e.g.:
9 # set(OPENJPEG_NAMESPACE "GDCMOPENJPEG")
10 cmake_minimum_required(VERSION 2.8.2)
11
12 if(COMMAND CMAKE_POLICY)
13   cmake_policy(SET CMP0003 NEW)
14   if (NOT (${CMAKE_VERSION} VERSION_LESS 3.0))
15     cmake_policy(SET CMP0042 NEW)
16   endif()
17 endif()
18
19 if(NOT OPENJPEG_NAMESPACE)
20   set(OPENJPEG_NAMESPACE "OPENJPEG")
21   set(OPENJPEG_STANDALONE 1)
22 endif()
23 # In all cases:
24 #string(TOLOWER ${OPENJPEG_NAMESPACE} OPENJPEG_LIBRARY_NAME)
25 set(OPENJPEG_LIBRARY_NAME openjp2)
26
27 project(${OPENJPEG_NAMESPACE})
28
29 # Do full dependency headers.
30 include_regular_expression("^.*$")
31
32 #-----------------------------------------------------------------------------
33 # OPENJPEG version number, useful for packaging and doxygen doc:
34 set(OPENJPEG_VERSION_MAJOR 2)
35 set(OPENJPEG_VERSION_MINOR 2)
36 set(OPENJPEG_VERSION_BUILD 0)
37 set(OPENJPEG_VERSION
38   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
39 set(PACKAGE_VERSION
40   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
41
42 # Because autotools does not support X.Y notation for SOVERSION, we have to use
43 # two numbering, one for the openjpeg version and one for openjpeg soversion
44 # version | soversion
45 #   1.0   |  0
46 #   1.1   |  1
47 #   1.2   |  2
48 #   1.3   |  3
49 #   1.4   |  4
50 #   1.5   |  5
51 #   1.5.1 |  5
52 #   2.0   |  6
53 #   2.0.1 |  6
54 #   2.1   |  7
55 #   2.1.1 |  7
56 #   2.1.2 |  7
57 #   2.2.0 |  7
58 # above is the recommendation by the OPJ team. If you really need to override this default,
59 # you can specify your own OPENJPEG_SOVERSION at cmake configuration time:
60 # cmake -DOPENJPEG_SOVERSION:STRING=42 /path/to/openjpeg
61 if(NOT OPENJPEG_SOVERSION)
62   set(OPENJPEG_SOVERSION 7)
63 endif(NOT OPENJPEG_SOVERSION)
64 set(OPENJPEG_LIBRARY_PROPERTIES
65   VERSION   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}"
66   SOVERSION "${OPENJPEG_SOVERSION}"
67 )
68
69 # --------------------------------------------------------------------------
70 # Path to additional CMake modules
71 set(CMAKE_MODULE_PATH
72     ${${OPENJPEG_NAMESPACE}_SOURCE_DIR}/cmake
73     ${CMAKE_MODULE_PATH})
74
75 # --------------------------------------------------------------------------
76 # On Visual Studio 8 MS deprecated C. This removes all 1.276E1265 security
77 # warnings
78 if(WIN32)
79   if(NOT BORLAND)
80     if(NOT CYGWIN)
81       if(NOT MINGW)
82         if(NOT ITK_ENABLE_VISUAL_STUDIO_DEPRECATED_C_WARNINGS)
83           add_definitions(
84             -D_CRT_FAR_MAPPINGS_NO_DEPRECATE
85             -D_CRT_IS_WCTYPE_NO_DEPRECATE
86             -D_CRT_MANAGED_FP_NO_DEPRECATE
87             -D_CRT_NONSTDC_NO_DEPRECATE
88             -D_CRT_SECURE_NO_DEPRECATE
89             -D_CRT_SECURE_NO_DEPRECATE_GLOBALS
90             -D_CRT_SETERRORMODE_BEEP_SLEEP_NO_DEPRECATE
91             -D_CRT_TIME_FUNCTIONS_NO_DEPRECATE
92             -D_CRT_VCCLRIT_NO_DEPRECATE
93             -D_SCL_SECURE_NO_DEPRECATE
94             )
95         endif()
96       endif()
97     endif()
98   endif()
99 endif()
100
101
102 # --------------------------------------------------------------------------
103 # Install directories
104 # Build DOCUMENTATION (not in ALL target and only if Doxygen is found)
105 option(BUILD_DOC "Build the HTML documentation (with doxygen if available)." OFF)
106
107 string(TOLOWER ${PROJECT_NAME} projectname)
108 set(OPENJPEG_INSTALL_SUBDIR "${projectname}-${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}")
109
110 if(NOT OPENJPEG_INSTALL_BIN_DIR)
111   set(OPENJPEG_INSTALL_BIN_DIR "bin")
112 endif()
113
114 if(NOT OPENJPEG_INSTALL_LIB_DIR)
115   set(OPENJPEG_INSTALL_LIB_DIR "lib")
116 endif()
117
118 if(NOT OPENJPEG_INSTALL_SHARE_DIR)
119   set(OPENJPEG_INSTALL_SHARE_DIR "share")
120 endif()
121
122 if(NOT OPENJPEG_INSTALL_DATA_DIR)
123   set(OPENJPEG_INSTALL_DATA_DIR "${OPENJPEG_INSTALL_SHARE_DIR}/${OPENJPEG_INSTALL_SUBDIR}")
124 endif()
125
126 if(NOT OPENJPEG_INSTALL_INCLUDE_DIR)
127   set(OPENJPEG_INSTALL_INCLUDE_DIR "include/${OPENJPEG_INSTALL_SUBDIR}")
128 endif()
129
130 if(BUILD_DOC)
131 if(NOT OPENJPEG_INSTALL_MAN_DIR)
132   set(OPENJPEG_INSTALL_MAN_DIR "share/man/")
133 endif()
134
135 if(NOT OPENJPEG_INSTALL_DOC_DIR)
136   set(OPENJPEG_INSTALL_DOC_DIR "share/doc/${OPENJPEG_INSTALL_SUBDIR}")
137 endif()
138 endif()
139
140 if(NOT OPENJPEG_INSTALL_JNI_DIR)
141   if(WIN32)
142     set(OPENJPEG_INSTALL_JNI_DIR ${OPENJPEG_INSTALL_BIN_DIR})
143   else()
144     set(OPENJPEG_INSTALL_JNI_DIR ${OPENJPEG_INSTALL_LIB_DIR})
145   endif()
146 endif()
147
148 if(NOT OPENJPEG_INSTALL_PACKAGE_DIR)
149   # We could install *.cmake files in share/ however those files contains
150   # hardcoded path to libraries on a multi-arch system (fedora/debian) those
151   # path will be different (lib/i386-linux-gnu vs lib/x86_64-linux-gnu)
152   set(OPENJPEG_INSTALL_PACKAGE_DIR "${OPENJPEG_INSTALL_LIB_DIR}/${OPENJPEG_INSTALL_SUBDIR}")
153 endif()
154
155 if (APPLE)
156         list(APPEND OPENJPEG_LIBRARY_PROPERTIES INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/${OPENJPEG_INSTALL_LIB_DIR}")
157         option(OPJ_USE_DSYMUTIL "Call dsymutil on binaries after build." OFF)
158 endif()
159
160 #-----------------------------------------------------------------------------
161 # Big endian test:
162 include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake)
163 TEST_BIG_ENDIAN(OPJ_BIG_ENDIAN)
164
165 #-----------------------------------------------------------------------------
166 # Setup file for setting custom ctest vars
167 configure_file(
168   ${${OPENJPEG_NAMESPACE}_SOURCE_DIR}/cmake/CTestCustom.cmake.in
169   ${${OPENJPEG_NAMESPACE}_BINARY_DIR}/CTestCustom.cmake
170   @ONLY
171   )
172
173 #-----------------------------------------------------------------------------
174 # OpenJPEG build configuration options.
175 option(BUILD_SHARED_LIBS "Build OpenJPEG shared library and link executables against it." ON)
176 option(BUILD_STATIC_LIBS "Build OpenJPEG static library." ON)
177 set (EXECUTABLE_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all executables.")
178 set (LIBRARY_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all libraries.")
179 mark_as_advanced(LIBRARY_OUTPUT_PATH EXECUTABLE_OUTPUT_PATH)
180
181 #-----------------------------------------------------------------------------
182 # configure name mangling to allow multiple libraries to coexist
183 # peacefully
184 if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in)
185 set(MANGLE_PREFIX ${OPENJPEG_LIBRARY_NAME})
186 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in
187                ${CMAKE_CURRENT_BINARY_DIR}/openjpeg_mangle.h
188                @ONLY)
189 endif()
190
191 #-----------------------------------------------------------------------------
192 # Compiler specific flags:
193 if(CMAKE_COMPILER_IS_GNUCC)
194   # For all builds, make sure openjpeg is std99 compliant:
195   # set(CMAKE_C_FLAGS "-Wall -std=c99 ${CMAKE_C_FLAGS}") # FIXME: this setting prevented us from setting a coverage build.
196   # Do not use ffast-math for all build, it would produce incorrect results, only set for release:
197   set(OPENJPEG_LIBRARY_COMPILE_OPTIONS ${OPENJPEG_LIBRARY_COMPILE_OPTIONS} "$<$<CONFIG:Release>:-ffast-math>")
198   set(OPENJP2_COMPILE_OPTIONS ${OPENJP2_COMPILE_OPTIONS} "$<$<CONFIG:Release>:-ffast-math>" -Wall -Wextra -Wconversion -Wunused-parameter -Wdeclaration-after-statement -Werror=declaration-after-statement)
199 endif()
200
201 #-----------------------------------------------------------------------------
202 # opj_config.h generation (1/2)
203
204 # Check if some include files are provided by the system
205 include(EnsureFileInclude)
206 # These files are mandatory
207 ensure_file_include("string.h"   HAVE_STRING_H YES)
208 ensure_file_include("memory.h"   HAVE_MEMORY_H YES)
209 ensure_file_include("stdlib.h"   HAVE_STDLIB_H YES)
210 ensure_file_include("stdio.h"    HAVE_STDIO_H  YES)
211 ensure_file_include("math.h"     HAVE_MATH_H   YES)
212 ensure_file_include("float.h"    HAVE_FLOAT_H  YES)
213 ensure_file_include("time.h"     HAVE_TIME_H   YES)
214 ensure_file_include("stdarg.h"   HAVE_STDARG_H YES)
215 ensure_file_include("ctype.h"    HAVE_CTYPE_H  YES)
216 ensure_file_include("assert.h"   HAVE_ASSERT_H YES)
217
218 # For the following files, we provide an alternative, they are not mandatory
219 ensure_file_include("stdint.h"   OPJ_HAVE_STDINT_H   NO)
220 ensure_file_include("inttypes.h" OPJ_HAVE_INTTYPES_H NO)
221
222 # why check this one ? for openjpip ?
223 include (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake)
224 CHECK_INCLUDE_FILE("strings.h"      HAVE_STRINGS_H)
225 CHECK_INCLUDE_FILE("sys/stat.h"     HAVE_SYS_STAT_H)
226 CHECK_INCLUDE_FILE("sys/types.h"    HAVE_SYS_TYPES_H)
227 CHECK_INCLUDE_FILE("unistd.h"       HAVE_UNISTD_H)
228
229 # Enable Large file support
230 include(TestLargeFiles)
231 OPJ_TEST_LARGE_FILES(OPJ_HAVE_LARGEFILES)
232
233 # Allocating Aligned Memory Blocks
234 include(CheckIncludeFiles)
235 check_include_files(malloc.h OPJ_HAVE_MALLOC_H)
236 include(CheckSymbolExists)
237 # _aligned_alloc https://msdn.microsoft.com/en-us/library/8z34s9c6.aspx
238 check_symbol_exists(_aligned_malloc malloc.h OPJ_HAVE__ALIGNED_MALLOC)
239 # posix_memalign (needs _POSIX_C_SOURCE >= 200112L on Linux)
240 set(CMAKE_REQUIRED_DEFINITIONS -D_POSIX_C_SOURCE=200112L)
241 check_symbol_exists(posix_memalign stdlib.h OPJ_HAVE_POSIX_MEMALIGN)
242 unset(CMAKE_REQUIRED_DEFINITIONS)
243 # memalign (obsolete)
244 check_symbol_exists(memalign malloc.h OPJ_HAVE_MEMALIGN)
245 #-----------------------------------------------------------------------------
246 # Build Library
247 if(BUILD_JPIP_SERVER)
248   find_package(CURL REQUIRED)
249   find_package(FCGI REQUIRED)
250   find_package(Threads REQUIRED)
251   if(NOT CMAKE_USE_PTHREADS_INIT)
252     message(FATAL_ERROR "Only pthread are supported")
253   endif()
254 endif()
255 add_subdirectory(src/lib)
256 option(BUILD_LUTS_GENERATOR "Build utility to generate t1_luts.h" OFF)
257 option(BUILD_UNIT_TESTS "Build unit tests (bench_dwt, test_sparse_array, etc..)" OFF)
258
259 #-----------------------------------------------------------------------------
260 # Build Applications
261 option(BUILD_CODEC "Build the CODEC executables" ON)
262 option(BUILD_MJ2 "Build the MJ2 executables." OFF)
263 option(BUILD_JPWL "Build the JPWL library and executables" OFF)
264 option(BUILD_JPIP "Build the JPIP library and executables." OFF)
265 if(BUILD_JPIP)
266   option(BUILD_JPIP_SERVER "Build the JPIP server." OFF)
267 endif()
268 option(BUILD_VIEWER "Build the OPJViewer executable (C++)" OFF)
269 option(BUILD_JAVA "Build the openjpeg jar (Java)" OFF)
270 option(BUILD_JP3D "Build the JP3D comp" OFF)
271 mark_as_advanced(BUILD_VIEWER)
272 mark_as_advanced(BUILD_JAVA)
273 mark_as_advanced(BUILD_JP3D)
274
275 if(BUILD_CODEC OR BUILD_MJ2)
276   # OFF: It will only build 3rd party libs if they are not found on the system
277   # ON: 3rd party libs will ALWAYS be build, and used
278   option(BUILD_THIRDPARTY "Build the thirdparty executables if it is needed" OFF)
279   add_subdirectory(thirdparty)
280   add_subdirectory(src/bin)
281 endif ()
282 add_subdirectory(wrapping)
283
284 #-----------------------------------------------------------------------------
285 # opj_config.h generation (2/2)
286 configure_file(
287  ${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjp2/opj_config.h.cmake.in
288  ${CMAKE_CURRENT_BINARY_DIR}/src/lib/openjp2/opj_config.h
289  @ONLY
290  )
291
292  configure_file(
293  ${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjp2/opj_config_private.h.cmake.in
294  ${CMAKE_CURRENT_BINARY_DIR}/src/lib/openjp2/opj_config_private.h
295  @ONLY
296  )
297
298 #-----------------------------------------------------------------------------
299 # build documentation in doc subdir:
300 if(BUILD_DOC)
301   add_subdirectory(doc)
302 endif()
303
304 #-----------------------------------------------------------------------------
305 # Buld Testing
306 option(BUILD_TESTING "Build the tests." OFF)
307 if(BUILD_TESTING)
308   if(BUILD_CODEC)
309     enable_testing()
310     include(CTest)
311
312     # Search openjpeg data needed for the tests
313     # They could be found via git on the OpenJPEG GitHub code project
314     # git clone https://github.com/uclouvain/openjpeg-data.git
315     find_path(OPJ_DATA_ROOT README-OPJ-Data
316       PATHS $ENV{OPJ_DATA_ROOT} ${CMAKE_SOURCE_DIR}/../data
317       NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
318       )
319
320     # Add repository where to find tests
321     add_subdirectory(tests)
322
323   else()
324     message(FATAL_ERROR "You need build codec to run the tests")
325   endif()
326 endif()
327
328 #-----------------------------------------------------------------------------
329 # install all targets referenced as OPENJPEGTargets
330 install(EXPORT OpenJPEGTargets DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR})
331 configure_file( ${${OPENJPEG_NAMESPACE}_SOURCE_DIR}/cmake/OpenJPEGConfig.cmake.in
332   ${${OPENJPEG_NAMESPACE}_BINARY_DIR}/OpenJPEGConfig.cmake
333   @ONLY
334 )
335 install( FILES ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake
336   DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR}
337 )
338
339 #-----------------------------------------------------------------------------
340 # install CHANGES and LICENSE
341 if(BUILD_DOC)
342 if(EXISTS ${OPENJPEG_SOURCE_DIR}/CHANGES)
343   install(FILES CHANGES DESTINATION ${OPENJPEG_INSTALL_DOC_DIR})
344 endif()
345
346 install(FILES LICENSE DESTINATION ${OPENJPEG_INSTALL_DOC_DIR})
347 endif()
348
349 include (cmake/OpenJPEGCPack.cmake)
350
351 #-----------------------------------------------------------------------------
352 # pkgconfig support
353 # enabled by default on Unix, disabled by default on other platforms
354 if(UNIX)
355   option(BUILD_PKGCONFIG_FILES "Build and install pkg-config files" ON)
356 else()
357   option(BUILD_PKGCONFIG_FILES "Build and install pkg-config files" OFF)
358 endif()
359 if(BUILD_PKGCONFIG_FILES)
360   # install in lib and not share (see multi-arch note above)
361   configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjp2/libopenjp2.pc.cmake.in
362     ${CMAKE_CURRENT_BINARY_DIR}/libopenjp2.pc @ONLY)
363   install( FILES  ${CMAKE_CURRENT_BINARY_DIR}/libopenjp2.pc DESTINATION
364     ${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig )
365 #
366   if(BUILD_JPWL)
367   # install in lib and not share (see multi-arch note above)
368   configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjpwl/libopenjpwl.pc.cmake.in
369     ${CMAKE_CURRENT_BINARY_DIR}/libopenjpwl.pc @ONLY)
370   install( FILES  ${CMAKE_CURRENT_BINARY_DIR}/libopenjpwl.pc DESTINATION
371     ${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig )
372   endif()
373 #
374   if(BUILD_JPIP)
375   # install in lib and not share (see multi-arch note above)
376   configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjpip/libopenjpip.pc.cmake.in
377     ${CMAKE_CURRENT_BINARY_DIR}/libopenjpip.pc @ONLY)
378   install( FILES  ${CMAKE_CURRENT_BINARY_DIR}/libopenjpip.pc DESTINATION
379     ${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig )
380   endif()
381 #
382   if(BUILD_JP3D)
383   # install in lib and not share (see multi-arch note above)
384   configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjp3d/libopenjp3d.pc.cmake.in
385     ${CMAKE_CURRENT_BINARY_DIR}/libopenjp3d.pc @ONLY)
386   install( FILES  ${CMAKE_CURRENT_BINARY_DIR}/libopenjp3d.pc DESTINATION
387     ${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig )
388   endif()
389 endif()
390
391 #-----------------------------------------------------------------------------
392
393 # build our version of astyle
394 SET (WITH_ASTYLE FALSE CACHE BOOL "If you plan to contribute you should reindent with scripts/prepare-commit.sh (using 'our' astyle)")