summaryrefslogtreecommitdiff
path: root/openjpeg/src/bin/mj2/CMakeLists.txt
blob: 5d3e288b667a7878503b5317d6ecf08643a5a6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Makefile for the MJ2 codecs of the OpenJPEG library: frames_to_mj2, mj2_to_frames, extract_j2k_from_mj2 and wrap_j2k_in_mj2

set(common_SRCS ${OPENJPEG_SOURCE_DIR}/src/bin/common/opj_getopt.c)

if(WIN32)
  if(BUILD_SHARED_LIBS)
    add_definitions(-DOPJ_EXPORTS)
  else()
    add_definitions(-DOPJ_STATIC)
  endif()
endif()

# Headers file are located here:
include_directories(
  ${OPENJPEG_BINARY_DIR}/src/lib/openjp2 # opj_config.h
  ${OPENJPEG_BINARY_DIR}/src/bin/common # opj_apps_config.h
  ${OPENJPEG_SOURCE_DIR}/src/lib/openmj2
  ${OPENJPEG_SOURCE_DIR}/src/bin/common
  ${LCMS_INCLUDE_DIRNAME}
  )

foreach(exe
  opj_mj2_wrap
  opj_mj2_extract
  opj_mj2_decompress
  opj_mj2_compress
)
  add_definitions(-DOPJ_USE_LEGACY)
  add_executable(${exe}
    ${exe}.c
    ${common_SRCS}
    ${MJ2_SRCS}
    ${OPENJPEG_SOURCE_DIR}/src/bin/common/color.c
    )
  set_property(
    TARGET ${exe}
    APPEND PROPERTY COMPILE_DEFINITIONS USE_MJ2
  )
  target_link_libraries(${exe} ${LCMS_LIBNAME} openmj2)

  if(UNIX)
    target_link_libraries(${exe} m)
  endif()

  install(TARGETS ${exe}
  	DESTINATION ${OPENJPEG_INSTALL_BIN_DIR})
endforeach()