summaryrefslogtreecommitdiffstats
path: root/kernel/kls_neo
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-05-27 18:38:14 +0900
committerMichele Calgaro <[email protected]>2023-09-21 19:58:56 +0900
commitaf121719c99a99fc3444d181777a6177f0d59dba (patch)
tree786cf8548c92daf560733278701d95d3079b1d2f /kernel/kls_neo
parent5b8d2d73599f1a06c2106ef71b9774dada86e076 (diff)
downloadlibksquirrel-af121719c99a99fc3444d181777a6177f0d59dba.tar.gz
libksquirrel-af121719c99a99fc3444d181777a6177f0d59dba.zip
Conversion to cmake building system
Signed-off-by: Michele Calgaro <[email protected]> Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'kernel/kls_neo')
-rw-r--r--kernel/kls_neo/CMakeLists.txt35
-rw-r--r--kernel/kls_neo/Makefile.am2
-rw-r--r--kernel/kls_neo/ksquirrel-libs-neo2ppm.cmake3
3 files changed, 39 insertions, 1 deletions
diff --git a/kernel/kls_neo/CMakeLists.txt b/kernel/kls_neo/CMakeLists.txt
new file mode 100644
index 0000000..61eb8a0
--- /dev/null
+++ b/kernel/kls_neo/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_NEO
+ -DNETPBM_S="${BIN_INSTALL_DIR}/ksquirrel-libs-neo2ppm"
+)
+
+if( NOT WITH_LCMS )
+ add_definitions( -DNO_LCMS )
+endif( )
+
+
+##### codecs
+
+tde_add_library( kls_neo 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-neo2ppm.cmake ksquirrel-libs-neo2ppm @ONLY )
+INSTALL(
+ PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/ksquirrel-libs-neo2ppm
+ DESTINATION ${BIN_INSTALL_DIR}
+)
diff --git a/kernel/kls_neo/Makefile.am b/kernel/kls_neo/Makefile.am
index ceae15b..24ca98a 100644
--- a/kernel/kls_neo/Makefile.am
+++ b/kernel/kls_neo/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = -I../include
+INCLUDES = -I../include $(all_includes)
bin_SCRIPTS = ksquirrel-libs-neo2ppm
diff --git a/kernel/kls_neo/ksquirrel-libs-neo2ppm.cmake b/kernel/kls_neo/ksquirrel-libs-neo2ppm.cmake
new file mode 100644
index 0000000..122c753
--- /dev/null
+++ b/kernel/kls_neo/ksquirrel-libs-neo2ppm.cmake
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+@NEOTOPPM_COMMAND@ "$1" > "$2"