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.
29 lines
511 B
29 lines
511 B
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/kernel/include
|
|
${CMAKE_BINARY_DIR}
|
|
)
|
|
|
|
|
|
add_definitions(
|
|
-DTIFF_UI="${SHARE_INSTALL_PREFIX}/ksquirrel-libs/libkls_tiff.so.ui"
|
|
)
|
|
|
|
|
|
##### codecs
|
|
|
|
tde_add_library( kls_tiff SHARED AUTOMOC
|
|
SOURCES fmt_codec_tiff.cpp
|
|
LINK ksquirrel-libs-shared ${TIFF_LIBRARY}
|
|
VERSION 0.8.0
|
|
DESTINATION ${LIB_INSTALL_DIR}/ksquirrel-libs
|
|
)
|
|
|
|
|
|
##### other data
|
|
|
|
install(
|
|
FILES libkls_tiff.so.ui
|
|
DESTINATION ${SHARE_INSTALL_PREFIX}/ksquirrel-libs
|
|
)
|