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