From af121719c99a99fc3444d181777a6177f0d59dba 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 --- kernel/kls_xwd/CMakeLists.txt | 15 +++++++++++++++ kernel/kls_xwd/Makefile.am | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 kernel/kls_xwd/CMakeLists.txt (limited to 'kernel/kls_xwd') diff --git a/kernel/kls_xwd/CMakeLists.txt b/kernel/kls_xwd/CMakeLists.txt new file mode 100644 index 0000000..ea78642 --- /dev/null +++ b/kernel/kls_xwd/CMakeLists.txt @@ -0,0 +1,15 @@ +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/kernel/include + ${CMAKE_BINARY_DIR} +) + + +##### codecs + +tde_add_library( kls_xwd SHARED AUTOMOC + SOURCES fmt_codec_xwd.cpp + LINK ksquirrel-libs-shared + VERSION 0.8.0 + DESTINATION ${LIB_INSTALL_DIR}/ksquirrel-libs +) diff --git a/kernel/kls_xwd/Makefile.am b/kernel/kls_xwd/Makefile.am index 9815d7d..ecdc394 100644 --- a/kernel/kls_xwd/Makefile.am +++ b/kernel/kls_xwd/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I../include +INCLUDES = -I../include $(all_includes) pkglib_LTLIBRARIES = libkls_xwd.la -- cgit v1.2.1