diff options
Diffstat (limited to 'src/tools/boost')
-rw-r--r-- | src/tools/boost/CMakeLists.txt | 17 | ||||
-rw-r--r-- | src/tools/boost/gui/CMakeLists.txt | 9 |
2 files changed, 26 insertions, 0 deletions
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 +) |