From f378f80d41bd9f85f5473d1af5920d00377faab3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 27 May 2023 18:38:14 +0900 Subject: Conversion to cmake building system MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michele Calgaro Signed-off-by: Slávek Banko (cherry picked from commit af121719c99a99fc3444d181777a6177f0d59dba) --- kernel/kls_pict/CMakeLists.txt | 35 +++++++++++++++++++++++++++ kernel/kls_pict/Makefile.am | 2 +- kernel/kls_pict/ksquirrel-libs-pict2ppm.cmake | 3 +++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 kernel/kls_pict/CMakeLists.txt create mode 100644 kernel/kls_pict/ksquirrel-libs-pict2ppm.cmake (limited to 'kernel/kls_pict') diff --git a/kernel/kls_pict/CMakeLists.txt b/kernel/kls_pict/CMakeLists.txt new file mode 100644 index 0000000..c54aca4 --- /dev/null +++ b/kernel/kls_pict/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_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} +) diff --git a/kernel/kls_pict/Makefile.am b/kernel/kls_pict/Makefile.am index a5732e7..b229087 100644 --- a/kernel/kls_pict/Makefile.am +++ b/kernel/kls_pict/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I../include +INCLUDES = -I../include $(all_includes) bin_SCRIPTS = ksquirrel-libs-pict2ppm diff --git a/kernel/kls_pict/ksquirrel-libs-pict2ppm.cmake b/kernel/kls_pict/ksquirrel-libs-pict2ppm.cmake new file mode 100644 index 0000000..d4ef43c --- /dev/null +++ b/kernel/kls_pict/ksquirrel-libs-pict2ppm.cmake @@ -0,0 +1,3 @@ +#!/bin/sh + +@PICTTOPPM_COMMAND@ "$1" > "$2" -- cgit v1.2.1