You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
53 lines
1.0 KiB
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/kernel/include
|
|
${CMAKE_BINARY_DIR}
|
|
)
|
|
|
|
|
|
add_definitions(
|
|
-DCAMERA_UI="${SHARE_INSTALL_PREFIX}/ksquirrel-libs/libkls_camera.so.ui"
|
|
-DCODEC_CAMERA
|
|
-DCODEC_ANOTHER
|
|
-DKLDCRAW_S="${BIN_INSTALL_DIR}/ksquirrel-libs-camera2ppm"
|
|
-DKLDCRAW="${BIN_INSTALL_DIR}/ksquirrel-libs-dcraw"
|
|
)
|
|
|
|
|
|
if( NOT WITH_JPEG )
|
|
add_definitions( -DNO_JPEG )
|
|
endif( )
|
|
|
|
if( NOT WITH_LCMS )
|
|
add_definitions( -DNO_LCMS )
|
|
endif( )
|
|
|
|
|
|
##### codecs
|
|
|
|
tde_add_library( kls_camera SHARED AUTOMOC
|
|
SOURCES fmt_codec_pnm.cpp
|
|
LINK ksquirrel-libs-shared ${LCMS_LIBRARIES}
|
|
VERSION 0.8.0
|
|
DESTINATION ${LIB_INSTALL_DIR}/ksquirrel-libs
|
|
)
|
|
|
|
tde_add_executable( ksquirrel-libs-dcraw
|
|
SOURCES dcraw.c
|
|
LINK ${JPEG_LIBRARY} ${LCMS_LIBRARIES} ${MATH_LIBC}
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|
|
|
|
|
|
##### other data
|
|
|
|
install(
|
|
FILES libkls_camera.so.ui
|
|
DESTINATION ${SHARE_INSTALL_PREFIX}/ksquirrel-libs
|
|
)
|
|
|
|
install(
|
|
PROGRAMS ksquirrel-libs-camera2ppm
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|