summaryrefslogtreecommitdiffstats
path: root/kernel/kls_mac
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kls_mac')
-rw-r--r--kernel/kls_mac/CMakeLists.txt35
-rw-r--r--kernel/kls_mac/Makefile.am2
-rw-r--r--kernel/kls_mac/ksquirrel-libs-mac2ppm.cmake3
3 files changed, 39 insertions, 1 deletions
diff --git a/kernel/kls_mac/CMakeLists.txt b/kernel/kls_mac/CMakeLists.txt
new file mode 100644
index 0000000..6e12830
--- /dev/null
+++ b/kernel/kls_mac/CMakeLists.txt
@@ -0,0 +1,35 @@
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_SOURCE_DIR}/kernel/include
+ ${CMAKE_BINARY_DIR}
+)
+
+
+add_definitions(
+ -DCODEC_NETPBM
+ -DCODEC_MAC
+ -DNETPBM_S="${BIN_INSTALL_DIR}/ksquirrel-libs-mac2ppm"
+)
+
+if( NOT WITH_LCMS )
+ add_definitions( -DNO_LCMS )
+endif( )
+
+
+##### codecs
+
+tde_add_library( kls_mac 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-mac2ppm.cmake ksquirrel-libs-mac2ppm @ONLY )
+INSTALL(
+ PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/ksquirrel-libs-mac2ppm
+ DESTINATION ${BIN_INSTALL_DIR}
+)
diff --git a/kernel/kls_mac/Makefile.am b/kernel/kls_mac/Makefile.am
index 7dedca4..af930a4 100644
--- a/kernel/kls_mac/Makefile.am
+++ b/kernel/kls_mac/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = -I../include
+INCLUDES = -I../include $(all_includes)
bin_SCRIPTS = ksquirrel-libs-mac2ppm
diff --git a/kernel/kls_mac/ksquirrel-libs-mac2ppm.cmake b/kernel/kls_mac/ksquirrel-libs-mac2ppm.cmake
new file mode 100644
index 0000000..1764f75
--- /dev/null
+++ b/kernel/kls_mac/ksquirrel-libs-mac2ppm.cmake
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+@MACPTOPPM_COMMAND@ "$1" > "$2"