From 199d48de5c43ab5da32fdfe2006f9d89bd4b6d17 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 7 May 2024 18:59:54 +0900 Subject: CMake conversion Signed-off-by: Michele Calgaro --- src/tools/boost/CMakeLists.txt | 17 +++++++++++++++++ src/tools/boost/gui/CMakeLists.txt | 9 +++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/tools/boost/CMakeLists.txt create mode 100644 src/tools/boost/gui/CMakeLists.txt (limited to 'src/tools/boost') diff --git a/src/tools/boost/CMakeLists.txt b/src/tools/boost/CMakeLists.txt new file mode 100644 index 0000000..8841e0b --- /dev/null +++ b/src/tools/boost/CMakeLists.txt @@ -0,0 +1,17 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + + +##### subfolders + +add_subdirectory( gui ) + + +##### libboost (static) + +tde_add_library( boost STATIC_PIC AUTOMOC + SOURCES + boostc.cpp boostc_compile.cpp boost_config.cpp + boost.cpp boostcpp.cpp boostbasic.cpp boost_generator.cpp +) diff --git a/src/tools/boost/gui/CMakeLists.txt b/src/tools/boost/gui/CMakeLists.txt new file mode 100644 index 0000000..21ea565 --- /dev/null +++ b/src/tools/boost/gui/CMakeLists.txt @@ -0,0 +1,9 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + +##### libboostui (static) + +tde_add_library( boostui STATIC_PIC AUTOMOC + SOURCES boost_ui.cpp +) -- cgit v1.2.3