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.
36 lines
669 B
36 lines
669 B
2 years ago
|
include_directories(
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
${CMAKE_SOURCE_DIR}/kernel/include
|
||
|
${CMAKE_BINARY_DIR}
|
||
|
)
|
||
|
|
||
|
|
||
|
add_definitions(
|
||
|
-DCODEC_NETPBM
|
||
|
-DCODEC_PICT
|
||
|
-DNETPBM_S="${BIN_INSTALL_DIR}/ksquirrel-libs-pict2ppm"
|
||
|
)
|
||
|
|
||
|
if( NOT WITH_LCMS )
|
||
|
add_definitions( -DNO_LCMS )
|
||
|
endif( )
|
||
|
|
||
|
|
||
|
##### codecs
|
||
|
|
||
|
tde_add_library( kls_pict SHARED AUTOMOC
|
||
|
SOURCES fmt_codec_pnm.cpp
|
||
|
LINK ksquirrel-libs-shared
|
||
|
VERSION 0.8.0
|
||
|
DESTINATION ${LIB_INSTALL_DIR}/ksquirrel-libs
|
||
|
)
|
||
|
|
||
|
|
||
|
##### other data
|
||
|
|
||
|
configure_file( ksquirrel-libs-pict2ppm.cmake ksquirrel-libs-pict2ppm @ONLY )
|
||
|
INSTALL(
|
||
|
PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/ksquirrel-libs-pict2ppm
|
||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||
|
)
|