diff options
Diffstat (limited to 'src/tools/mpc')
| -rw-r--r-- | src/tools/mpc/CMakeLists.txt | 15 | ||||
| -rw-r--r-- | src/tools/mpc/gui/CMakeLists.txt | 9 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/tools/mpc/CMakeLists.txt b/src/tools/mpc/CMakeLists.txt new file mode 100644 index 0000000..d7b7886 --- /dev/null +++ b/src/tools/mpc/CMakeLists.txt @@ -0,0 +1,15 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + + +##### subfolders + +add_subdirectory( gui ) + + +##### libmpc (static) + +tde_add_library( mpc STATIC_PIC AUTOMOC + SOURCES mpc_compile.cpp mpc_config.cpp mpc.cpp +) diff --git a/src/tools/mpc/gui/CMakeLists.txt b/src/tools/mpc/gui/CMakeLists.txt new file mode 100644 index 0000000..e436f62 --- /dev/null +++ b/src/tools/mpc/gui/CMakeLists.txt @@ -0,0 +1,9 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + +##### libmpcui (static) + +tde_add_library( mpcui STATIC_PIC AUTOMOC + SOURCES mpc_ui.cpp +) |
