[trunk] correct missing variable in openjpeg config file
[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 endif()
15
16 if(NOT OPENJPEG_NAMESPACE)
17   set(OPENJPEG_NAMESPACE "OPENJPEG")
18   set(OPENJPEG_STANDALONE 1)
19 endif()
20 # In all cases:
21 #string(TOLOWER ${OPENJPEG_NAMESPACE} OPENJPEG_LIBRARY_NAME)
22 set(OPENJPEG_LIBRARY_NAME openjp2)
23
24 project(${OPENJPEG_NAMESPACE} C)
25
26 # Do full dependency headers.
27 include_regular_expression("^.*$")
28
29 #-----------------------------------------------------------------------------
30 # OPENJPEG version number, useful for packaging and doxygen doc:
31 set(OPENJPEG_VERSION_MAJOR 2)
32 set(OPENJPEG_VERSION_MINOR 0)
33 set(OPENJPEG_VERSION_BUILD 0)
34 set(OPENJPEG_VERSION
35   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
36 set(PACKAGE_VERSION
37   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
38
39 # Because autotools does not support X.Y notation for SOVERSION, we have to use
40 # two numbering, one for the openjpeg version and one for openjpeg soversion
41 # version | soversion
42 #   1.0   |  0
43 #   1.1   |  1
44 #   1.2   |  2
45 #   1.3   |  3
46 #   1.4   |  4
47 #   1.5   |  5
48 #   1.5.1 |  5
49 #   2.0   |  6
50 # above is the recommendation by the OPJ team. If you really need to override this default,
51 # you can specify your own OPENJPEG_SOVERSION at cmake configuration time:
52 # cmake -DOPENJPEG_SOVERSION:STRING=42 /path/to/openjpeg
53 if(NOT OPENJPEG_SOVERSION)
54   SET(OPENJPEG_SOVERSION 6)
55 endif(NOT OPENJPEG_SOVERSION)
56 set(OPENJPEG_LIBRARY_PROPERTIES
57   VERSION   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}"
58   SOVERSION "${OPENJPEG_SOVERSION}"
59 )
60
61 # --------------------------------------------------------------------------
62 # Path to additional CMake modules
63 set(CMAKE_MODULE_PATH
64     ${CMAKE_SOURCE_DIR}/cmake
65     ${CMAKE_MODULE_PATH})
66
67 # --------------------------------------------------------------------------
68 # On Visual Studio 8 MS deprecated C. This removes all 1.276E1265 security
69 # warnings
70 if(WIN32)
71   if(NOT BORLAND)
72     if(NOT CYGWIN)
73       if(NOT MINGW)
74         if(NOT ITK_ENABLE_VISUAL_STUDIO_DEPRECATED_C_WARNINGS)
75           add_definitions(
76             -D_CRT_FAR_MAPPINGS_NO_DEPRECATE
77             -D_CRT_IS_WCTYPE_NO_DEPRECATE
78             -D_CRT_MANAGED_FP_NO_DEPRECATE
79             -D_CRT_NONSTDC_NO_DEPRECATE
80             -D_CRT_SECURE_NO_DEPRECATE
81             -D_CRT_SECURE_NO_DEPRECATE_GLOBALS
82             -D_CRT_SETERRORMODE_BEEP_SLEEP_NO_DEPRECATE
83             -D_CRT_TIME_FUNCTIONS_NO_DEPRECATE
84             -D_CRT_VCCLRIT_NO_DEPRECATE
85             -D_SCL_SECURE_NO_DEPRECATE
86             )
87         endif()
88       endif()
89     endif()
90   endif()
91 endif()
92
93
94 # --------------------------------------------------------------------------
95 # Install directories
96
97 string(TOLOWER ${PROJECT_NAME} projectname)
98 set(OPENJPEG_INSTALL_SUBDIR "${projectname}-${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}")
99
100 if(NOT OPENJPEG_INSTALL_BIN_DIR)
101   set(OPENJPEG_INSTALL_BIN_DIR "bin")
102 endif()
103
104 if(NOT OPENJPEG_INSTALL_LIB_DIR)
105   set(OPENJPEG_INSTALL_LIB_DIR "lib")
106 endif()
107
108 if(NOT OPENJPEG_INSTALL_SHARE_DIR)
109   set(OPENJPEG_INSTALL_SHARE_DIR "share")
110 endif()
111
112 if(NOT OPENJPEG_INSTALL_DATA_DIR)
113   set(OPENJPEG_INSTALL_DATA_DIR "${OPENJPEG_INSTALL_SHARE_DIR}/${OPENJPEG_INSTALL_SUBDIR}")
114 endif()
115
116 if(NOT OPENJPEG_INSTALL_INCLUDE_DIR)
117   set(OPENJPEG_INSTALL_INCLUDE_DIR "include/${OPENJPEG_INSTALL_SUBDIR}")
118 endif()
119
120 if(NOT OPENJPEG_INSTALL_MAN_DIR)
121   set(OPENJPEG_INSTALL_MAN_DIR "share/man/")
122 endif()
123
124 if(NOT OPENJPEG_INSTALL_DOC_DIR)
125   set(OPENJPEG_INSTALL_DOC_DIR "share/doc/${OPENJPEG_INSTALL_SUBDIR}")
126 endif()
127
128 if(NOT OPENJPEG_INSTALL_JNI_DIR)
129   if(WIN32)
130     set(OPENJPEG_INSTALL_JNI_DIR ${OPENJPEG_INSTALL_BIN_DIR})
131   else()
132     set(OPENJPEG_INSTALL_JNI_DIR ${OPENJPEG_INSTALL_LIB_DIR})
133   endif()
134 endif()
135
136 if(NOT OPENJPEG_INSTALL_PACKAGE_DIR)
137   # We could install *.cmake files in share/ however those files contains
138   # hardcoded path to libraries on a multi-arch system (fedora/debian) those
139   # path will be different (lib/i386-linux-gnu vs lib/x86_64-linux-gnu)
140   set(OPENJPEG_INSTALL_PACKAGE_DIR "${OPENJPEG_INSTALL_LIB_DIR}/${OPENJPEG_INSTALL_SUBDIR}")
141 endif()
142
143 #-----------------------------------------------------------------------------
144 # Big endian test:
145 include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake)
146 TEST_BIG_ENDIAN(OPJ_BIG_ENDIAN)
147
148 #-----------------------------------------------------------------------------
149 # Setup file for setting custom ctest vars
150 configure_file(
151   ${CMAKE_SOURCE_DIR}/cmake/CTestCustom.cmake.in
152   ${CMAKE_BINARY_DIR}/CTestCustom.cmake
153   @ONLY
154   )
155
156 #-----------------------------------------------------------------------------
157 # OpenJPEG build configuration options.
158 option(BUILD_SHARED_LIBS "Build OpenJPEG shared library and link executables against it." ON)
159 set (EXECUTABLE_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all executables.")
160 set (LIBRARY_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all libraries.")
161 mark_as_advanced(LIBRARY_OUTPUT_PATH EXECUTABLE_OUTPUT_PATH)
162
163 #-----------------------------------------------------------------------------
164 # configure name mangling to allow multiple libraries to coexist
165 # peacefully
166 if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in)
167 set(MANGLE_PREFIX ${OPENJPEG_LIBRARY_NAME})
168 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in
169                ${CMAKE_CURRENT_BINARY_DIR}/openjpeg_mangle.h
170                @ONLY)
171 endif()
172
173 #-----------------------------------------------------------------------------
174 # Compiler specific flags:
175 if(CMAKE_COMPILER_IS_GNUCC)
176   # For all builds, make sure openjpeg is std99 compliant:
177   # set(CMAKE_C_FLAGS "-Wall -std=c99 ${CMAKE_C_FLAGS}") # FIXME: this setting prevented us from setting a coverage build.
178   # Do not use ffast-math for all build, it would produce incorrect results, only set for release:
179   set(CMAKE_C_FLAGS_RELEASE "-ffast-math ${CMAKE_C_FLAGS_RELEASE}")
180 endif()
181
182 #-----------------------------------------------------------------------------
183 # opj_config.h generation
184 include (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake)
185 CHECK_INCLUDE_FILE("stdint.h"       OPJ_HAVE_STDINT_H)
186 CHECK_INCLUDE_FILE("inttypes.h"     OPJ_HAVE_INTTYPES_H)
187
188 CHECK_INCLUDE_FILE("strings.h"      HAVE_STRINGS_H)
189 CHECK_INCLUDE_FILE("memory.h"       HAVE_MEMORY_H)
190 CHECK_INCLUDE_FILE("stdlib.h"       HAVE_STDLIB_H)
191 CHECK_INCLUDE_FILE("stdio.h"        HAVE_STDIO_H)
192 CHECK_INCLUDE_FILE("string.h"       HAVE_STRING_H)
193 CHECK_INCLUDE_FILE("sys/stat.h"     HAVE_SYS_STAT_H)
194 CHECK_INCLUDE_FILE("sys/types.h"    HAVE_SYS_TYPES_H)
195 CHECK_INCLUDE_FILE("unistd.h"       HAVE_UNISTD_H)
196
197 # Enable Large file support
198 include(TestLargeFiles)
199 OPJ_TEST_LARGE_FILES(OPJ_HAVE_LARGEFILES)
200
201 configure_file(
202  ${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjp2/opj_config.h.cmake.in
203  ${CMAKE_CURRENT_BINARY_DIR}/src/lib/openjp2/opj_config.h
204  @ONLY
205  )
206
207 #-----------------------------------------------------------------------------
208 # Build Library
209 add_subdirectory(src)
210
211 #-----------------------------------------------------------------------------
212 # Build Applications
213 option(BUILD_CODEC "Build the CODEC executables" ON)
214 option(BUILD_MJ2 "Build the MJ2 executables." OFF)
215 option(BUILD_JPWL "Build the JPWL library and executables" OFF)
216 option(BUILD_JPIP "Build the JPIP library and executables." OFF)
217 if(BUILD_JPIP)
218   option(BUILD_JPIP_SERVER "Build the JPIP server." OFF)
219 endif()
220 option(BUILD_VIEWER "Build the OPJViewer executable (C++)" OFF)
221 option(BUILD_JAVA "Build the openjpeg jar (Java)" OFF)
222 option(BUILD_JP3D "Build the JP3D comp" OFF)
223 mark_as_advanced(BUILD_VIEWER)
224 mark_as_advanced(BUILD_JAVA)
225 mark_as_advanced(BUILD_JP3D)
226
227 if(BUILD_CODEC OR BUILD_MJ2)
228   # OFF: It will only build 3rd party libs if they are not found on the system
229   # ON: 3rd party libs will ALWAYS be build, and used
230   option(BUILD_THIRDPARTY "Build the thirdparty executables if it is needed" OFF)
231   add_subdirectory(thirdparty)
232   add_subdirectory(src/bin)
233 endif ()
234 add_subdirectory(wrapping)
235
236 #-----------------------------------------------------------------------------
237 # Build DOCUMENTATION (not in ALL target and only if Doxygen is found)
238 option(BUILD_DOC "Build the HTML documentation (with doxygen if available)." OFF)
239 if(BUILD_DOC)
240   add_subdirectory(doc)
241 endif()
242
243 #-----------------------------------------------------------------------------
244 # Buld Testing
245 option(BUILD_TESTING "Build the tests." OFF)
246 if(BUILD_TESTING)
247   if(BUILD_CODEC)
248     enable_testing()
249     include(CTest)
250
251     # Search openjpeg data needed for the tests
252     # They could be found via svn on the OpenJPEG google code project
253     # svn checkout http://openjpeg.googlecode.com/svn/data (about 70 Mo)
254     find_path(OPJ_DATA_ROOT README-OPJ-Data
255       PATHS
256       $ENV{OPJ_DATA_ROOT}
257       ${CMAKE_SOURCE_DIR}/../data
258       )
259
260     # Add repository where to find tests
261     add_subdirectory(tests)
262
263   else()
264     message(FATAL_ERROR "You need build codec to run the tests")
265   endif()
266 endif()
267
268 #-----------------------------------------------------------------------------
269 # install all targets referenced as OPENJPEGTargets
270 install(EXPORT OpenJPEGTargets DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR})
271 configure_file( ${OPENJPEG_SOURCE_DIR}/cmake/OpenJPEGConfig.cmake.in
272   ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake
273   @ONLY
274 )
275 install( FILES ${OPENJPEG_BINARY_DIR}/OpenJPEGConfig.cmake
276   DESTINATION ${OPENJPEG_INSTALL_PACKAGE_DIR}
277 )
278
279 #-----------------------------------------------------------------------------
280 # install CHANGES and LICENSE
281 if(EXISTS ${OPENJPEG_SOURCE_DIR}/CHANGES)
282   install(FILES CHANGES DESTINATION ${OPENJPEG_INSTALL_DOC_DIR})
283 endif()
284 install(FILES LICENSE DESTINATION ${OPENJPEG_INSTALL_DOC_DIR})
285
286 include (cmake/OpenJPEGCPack.cmake)
287
288 #-----------------------------------------------------------------------------
289 # pkgconfig support
290 if(UNIX)
291   # install in lib and not share (see multi-arch note above)
292   configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/lib/openjp2/libopenjp2.pc.cmake.in
293     ${CMAKE_CURRENT_BINARY_DIR}/libopenjp2.pc @ONLY)
294   install( FILES  ${CMAKE_CURRENT_BINARY_DIR}/libopenjp2.pc DESTINATION
295     ${OPENJPEG_INSTALL_LIB_DIR}/pkgconfig )
296 endif()
297 #-----------------------------------------------------------------------------