2010-05-11 17:44:00 +00:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# CMake file for libjasper. See root CMakeLists.txt
|
|
|
|
#
|
|
|
|
# ----------------------------------------------------------------------------
|
2012-02-24 13:53:22 +00:00
|
|
|
project(${JASPER_LIBRARY})
|
2010-05-11 17:44:00 +00:00
|
|
|
|
2010-09-22 02:01:54 +00:00
|
|
|
|
2010-05-11 17:44:00 +00:00
|
|
|
add_definitions(-DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT)
|
|
|
|
|
2012-03-03 15:49:23 +00:00
|
|
|
ocv_include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
2010-05-11 17:44:00 +00:00
|
|
|
|
|
|
|
file(GLOB lib_srcs *.c)
|
|
|
|
file(GLOB lib_hdrs *.h)
|
2011-04-26 15:46:15 +00:00
|
|
|
file(GLOB lib_ext_hdrs jasper/*.h)
|
2010-05-11 17:44:00 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------------
|
2012-06-08 03:15:08 +00:00
|
|
|
# Define the library target:
|
2010-05-11 17:44:00 +00:00
|
|
|
# ----------------------------------------------------------------------------------
|
|
|
|
|
2012-02-24 13:53:22 +00:00
|
|
|
add_library(${JASPER_LIBRARY} STATIC ${lib_srcs} ${lib_hdrs} ${lib_ext_hdrs})
|
2010-05-11 17:44:00 +00:00
|
|
|
|
2012-08-30 16:23:18 +04:00
|
|
|
if(WIN32 AND NOT MINGW)
|
2012-02-24 13:53:22 +00:00
|
|
|
add_definitions(-DJAS_WIN_MSVC_BUILD)
|
2012-08-30 16:23:18 +04:00
|
|
|
endif(WIN32 AND NOT MINGW)
|
2010-05-11 17:44:00 +00:00
|
|
|
|
2013-04-17 22:01:03 +04:00
|
|
|
ocv_warnings_disable(CMAKE_C_FLAGS -Wno-implicit-function-declaration -Wno-uninitialized -Wmissing-prototypes
|
2013-05-21 14:35:24 +04:00
|
|
|
-Wno-unused-but-set-parameter -Wmissing-declarations -Wunused -Wshadow
|
2013-04-18 10:30:15 +04:00
|
|
|
-Wsign-compare -Wstrict-overflow)
|
2012-11-19 15:16:13 +04:00
|
|
|
ocv_warnings_disable(CMAKE_C_FLAGS -Wunused-parameter) # clang
|
2012-08-29 23:15:07 +04:00
|
|
|
ocv_warnings_disable(CMAKE_C_FLAGS /wd4013 /wd4018 /wd4101 /wd4244 /wd4267 /wd4715) # vs2005
|
2012-04-13 21:50:59 +00:00
|
|
|
|
2010-05-11 17:44:00 +00:00
|
|
|
if(UNIX)
|
2012-02-24 13:53:22 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR CV_ICC)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
|
|
|
|
endif()
|
2010-05-11 17:44:00 +00:00
|
|
|
endif()
|
|
|
|
|
2012-02-24 13:53:22 +00:00
|
|
|
set_target_properties(${JASPER_LIBRARY}
|
2012-06-08 03:15:08 +00:00
|
|
|
PROPERTIES
|
|
|
|
OUTPUT_NAME ${JASPER_LIBRARY}
|
|
|
|
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}"
|
2012-06-27 06:22:26 +00:00
|
|
|
ARCHIVE_OUTPUT_DIRECTORY ${3P_LIBRARY_OUTPUT_PATH}
|
2012-06-08 03:15:08 +00:00
|
|
|
)
|
|
|
|
|
2011-05-17 09:40:06 +00:00
|
|
|
if(ENABLE_SOLUTION_FOLDERS)
|
2012-02-24 13:53:22 +00:00
|
|
|
set_target_properties(${JASPER_LIBRARY} PROPERTIES FOLDER "3rdparty")
|
2012-06-08 03:15:08 +00:00
|
|
|
endif()
|
|
|
|
|
2010-12-05 02:10:59 +00:00
|
|
|
if(NOT BUILD_SHARED_LIBS)
|
2014-01-17 16:30:31 +04:00
|
|
|
ocv_install_target(${JASPER_LIBRARY} EXPORT OpenCVModules ARCHIVE DESTINATION ${OPENCV_3P_LIB_INSTALL_PATH} COMPONENT dev)
|
2010-12-05 02:10:59 +00:00
|
|
|
endif()
|