e22dd3bbc92bff5916f5e34aaa8c6cf767588082
[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.4)
11
12 IF(NOT OPENJPEG_NAMESPACE)
13   SET(OPENJPEG_NAMESPACE "OPENJPEG")
14   SET(OPENJPEG_STANDALONE 1)
15 ENDIF(NOT OPENJPEG_NAMESPACE)
16 # In all cases:
17 STRING(TOLOWER ${OPENJPEG_NAMESPACE} OPENJPEG_LIBRARY_NAME)
18
19 IF(COMMAND CMAKE_POLICY)
20   CMAKE_POLICY(SET CMP0003 NEW)
21 ENDIF(COMMAND CMAKE_POLICY)
22
23 PROJECT(${OPENJPEG_NAMESPACE} C)
24
25 # Do full dependency headers.
26 INCLUDE_REGULAR_EXPRESSION("^.*$")
27
28 #-----------------------------------------------------------------------------
29 # OPENJPEG version number, useful for packaging and doxygen doc:
30 SET(OPENJPEG_VERSION_MAJOR 2)
31 SET(OPENJPEG_VERSION_MINOR 0)
32 SET(OPENJPEG_VERSION_BUILD 0)
33 SET(OPENJPEG_VERSION
34   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}")
35
36 # This setting of SOVERSION assumes that any API change
37 # will increment either the minor or major version number of openjpeg
38 SET(OPENJPEG_LIBRARY_PROPERTIES
39   VERSION   "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}.${OPENJPEG_VERSION_BUILD}"
40   SOVERSION "${OPENJPEG_VERSION_MAJOR}.${OPENJPEG_VERSION_MINOR}"
41 )
42
43 #-----------------------------------------------------------------------------
44 # Test for some required system information.
45 INCLUDE (${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityC.cmake)
46
47 #-----------------------------------------------------------------------------
48 # Setup file for setting custom ctest vars
49 CONFIGURE_FILE(
50   ${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake.in
51   ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake
52   @ONLY
53   )
54
55 #-----------------------------------------------------------------------------
56 # OpenJPEG build configuration options.
57 OPTION(BUILD_SHARED_LIBS "Build OpenJPEG with shared libraries." OFF)
58 OPTION(ENABLE_PROFILING "Enable profiling for the library" OFF)
59
60 #-----------------------------------------------------------------------------
61 SET (EXECUTABLE_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all executables.")
62 SET (LIBRARY_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all libraries.")
63 MARK_AS_ADVANCED(LIBRARY_OUTPUT_PATH EXECUTABLE_OUTPUT_PATH)
64
65
66 #-----------------------------------------------------------------------------
67 # For the codec...
68 OPTION(BUILD_EXAMPLES "Build the Examples (codec...)." OFF)
69
70
71 # configure name mangling to allow multiple libraries to coexist
72 # peacefully
73 IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in)
74 SET(MANGLE_PREFIX ${OPENJPEG_LIBRARY_NAME})
75 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in
76                ${CMAKE_CURRENT_BINARY_DIR}/openjpeg_mangle.h
77                @ONLY IMMEDIATE)
78 ENDIF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/openjpeg_mangle.h.in)
79
80 #-----------------------------------------------------------------------------
81 # Configure files with settings for use by the build.
82 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/opj_configure.h.in 
83                ${CMAKE_CURRENT_BINARY_DIR}/opj_configure.h)
84
85
86 #-----------------------------------------------------------------------------
87 # Always build the library
88 INCLUDE_DIRECTORIES(BEFORE ${CMAKE_CURRENT_BINARY_DIR})
89 SUBDIRS(
90   libopenjpeg
91   codec
92   test_V2_tile_handling
93   test_Free_image_V2_tile_handling
94   # mj2
95   # cmake 2.4.5 has poor java support
96   #j2kviewer/src
97   )
98
99 #IF(NOT UNIX)
100 #SUBDIRS(
101 #  jpwl
102 #  jp3d
103 #  indexer_JPIP
104 #  )
105 #ENDIF(NOT UNIX)
106
107 #-----------------------------------------------------------------------------
108 # Build example only if requested
109 #IF(BUILD_EXAMPLES)
110 #  SUBDIRS(codec)
111 #ENDIF(BUILD_EXAMPLES)
112
113 #-----------------------------------------------------------------------------
114 # For the documentation
115 OPTION(BUILD_DOCUMENTATION "Build the doxygen documentation" OFF)
116 IF(BUILD_DOCUMENTATION)
117   SUBDIRS(doc)
118 ENDIF(BUILD_DOCUMENTATION)
119
120 #-----------------------------------------------------------------------------
121 # For openjpeg team if they ever want Dart+CMake
122 IF(OPENJPEG_STANDALONE)
123   INCLUDE(CTest)
124   #MARK_AS_ADVANCED(BUILD_TESTING DART_ROOT TCL_TCLSH)
125   IF(BUILD_TESTING)
126     ENABLE_TESTING()
127     SET(BUILDNAME "OpenJPEG-${CMAKE_SYSTEM}-${CMAKE_C_COMPILER}" CACHE STRING "Name of build on the dashboard")
128     MARK_AS_ADVANCED(BUILDNAME)
129   ENDIF(BUILD_TESTING)
130 ENDIF(OPENJPEG_STANDALONE)
131
132 # Adding test with dataset from:
133 # http://www.crc.ricoh.com/~gormish/jpeg2000conformance/
134 # http://www.jpeg.org/jpeg2000guide/testimages/testimages.html
135
136 #-----------------------------------------------------------------------------
137 # Adding JPEG2000_CONFORMANCE_DATA_ROOT
138 FIND_PATH(JPEG2000_CONFORMANCE_DATA_ROOT testimages.html
139   ${OPENJPEG_SOURCE_DIR}/../jpeg2000testimages
140   $ENV{JPEG2000_CONFORMANCE_DATA_ROOT}
141 )
142
143 #-----------------------------------------------------------------------------
144 # Compiler specific flags:
145 IF(CMAKE_COMPILER_IS_GNUCC)
146   # For all builds, make sure openjpeg is std99 compliant:
147   SET(CMAKE_C_FLAGS "-Wall -std=c99 ${CMAKE_C_FLAGS}")
148   # Do not use ffast-math for all build, it would produce incorrect results, only set for release:
149   SET(CMAKE_C_FLAGS_RELEASE "-ffast-math ${CMAKE_C_FLAGS_RELEASE}")
150 ENDIF(CMAKE_COMPILER_IS_GNUCC)
151