diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-05-27 18:38:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-21 19:58:56 +0900 |
commit | af121719c99a99fc3444d181777a6177f0d59dba (patch) | |
tree | 786cf8548c92daf560733278701d95d3079b1d2f /kernel/kls_eps | |
parent | 5b8d2d73599f1a06c2106ef71b9774dada86e076 (diff) | |
download | libksquirrel-af121719c99a99fc3444d181777a6177f0d59dba.tar.gz libksquirrel-af121719c99a99fc3444d181777a6177f0d59dba.zip |
Conversion to cmake building system
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kernel/kls_eps')
-rw-r--r-- | kernel/kls_eps/CMakeLists.txt | 20 | ||||
-rw-r--r-- | kernel/kls_eps/Makefile.am | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/kernel/kls_eps/CMakeLists.txt b/kernel/kls_eps/CMakeLists.txt new file mode 100644 index 0000000..9146e46 --- /dev/null +++ b/kernel/kls_eps/CMakeLists.txt @@ -0,0 +1,20 @@ +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/kernel/include + ${CMAKE_BINARY_DIR} +) + +add_definitions( + -DCODEC_EPS + -DEPS2PPM="${EPS_COMMAND}" +) + + +##### codecs + +tde_add_library( kls_eps SHARED AUTOMOC + SOURCES fmt_codec_pnm.cpp + LINK ksquirrel-libs-shared ${MATH_LIBC} + VERSION 0.8.0 + DESTINATION ${LIB_INSTALL_DIR}/ksquirrel-libs +) diff --git a/kernel/kls_eps/Makefile.am b/kernel/kls_eps/Makefile.am index 5aa673f..dbfb7f7 100644 --- a/kernel/kls_eps/Makefile.am +++ b/kernel/kls_eps/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I../include +INCLUDES = -I../include $(all_includes) pkglib_LTLIBRARIES = libkls_eps.la |