CMakeLists.txt 1.8 KB
Newer Older
1 2 3 4
# ----------------------------------------------------------------------------
#  CMake file for libjasper. See root CMakeLists.txt
#
# ----------------------------------------------------------------------------
5
project(${JASPER_LIBRARY})
6

7

8 9
add_definitions(-DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT  -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT)

10
ocv_include_directories(${CMAKE_CURRENT_SOURCE_DIR})
11 12 13

file(GLOB lib_srcs *.c)
file(GLOB lib_hdrs *.h)
14
file(GLOB lib_ext_hdrs jasper/*.h)
15 16

# ----------------------------------------------------------------------------------
Andrey Kamaev's avatar
Andrey Kamaev committed
17
#         Define the library target:
18 19
# ----------------------------------------------------------------------------------

20
add_library(${JASPER_LIBRARY} STATIC ${lib_srcs} ${lib_hdrs} ${lib_ext_hdrs})
21

22
if(WIN32 AND NOT MINGW)
23
  add_definitions(-DJAS_WIN_MSVC_BUILD)
24
endif(WIN32 AND NOT MINGW)
25

26 27
ocv_warnings_disable(CMAKE_C_FLAGS -Wno-implicit-function-declaration -Wno-uninitialized -Wmissing-prototypes
                                   -Wno-unused-but-set-parameter -Wmissing-declarations -Wunused -Wshadow -Wsign-compare)
28
ocv_warnings_disable(CMAKE_C_FLAGS -Wunused-parameter) # clang
29
ocv_warnings_disable(CMAKE_C_FLAGS /wd4013 /wd4018 /wd4101 /wd4244 /wd4267 /wd4715) # vs2005
30

31
if(UNIX)
32 33 34
  if(CMAKE_COMPILER_IS_GNUCXX OR CV_ICC)
    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
  endif()
35 36
endif()

37
set_target_properties(${JASPER_LIBRARY}
Andrey Kamaev's avatar
Andrey Kamaev committed
38 39 40
  PROPERTIES
  OUTPUT_NAME ${JASPER_LIBRARY}
  DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}"
41
  ARCHIVE_OUTPUT_DIRECTORY ${3P_LIBRARY_OUTPUT_PATH}
Andrey Kamaev's avatar
Andrey Kamaev committed
42 43
  )

44
if(ENABLE_SOLUTION_FOLDERS)
45
  set_target_properties(${JASPER_LIBRARY} PROPERTIES FOLDER "3rdparty")
Andrey Kamaev's avatar
Andrey Kamaev committed
46 47
endif()

48
if(NOT BUILD_SHARED_LIBS)
49
  install(TARGETS ${JASPER_LIBRARY} ARCHIVE DESTINATION ${OPENCV_3P_LIB_INSTALL_PATH} COMPONENT main)
50
endif()
51