summaryrefslogtreecommitdiffstats
path: root/kernel/kls_dicom/CMakeLists.txt
blob: 560c73f2fda006df25b46693d1b1729ed655ac2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
include_directories(
  ${CMAKE_CURRENT_SOURCE_DIR}
  ${CMAKE_SOURCE_DIR}/kernel/
  ${CMAKE_SOURCE_DIR}/kernel/include
  ${CMAKE_BINARY_DIR}
)


add_definitions(
  -DCODEC_DICOM
  -DDICOM="${BIN_INSTALL_DIR}/ksquirrel-libs-dicom2png"
)


##### codecs

tde_add_library( kls_dicom SHARED AUTOMOC
  SOURCES fmt_codec_png.cpp
  LINK ksquirrel-libs-shared ksquirrel-libs-png-shared
  VERSION 0.8.0
  DESTINATION ${LIB_INSTALL_DIR}/ksquirrel-libs
)


##### other data

configure_file( ksquirrel-libs-dicom2png.cmake ksquirrel-libs-dicom2png @ONLY )
install(
  PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/ksquirrel-libs-dicom2png
  DESTINATION ${BIN_INSTALL_DIR}
)