summaryrefslogtreecommitdiffstats
path: root/src/progs/psp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-07 18:59:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-10 10:25:20 +0900
commitdc5b11fc7d45bfeabd0866b8821fefbfc7fd1209 (patch)
tree5774d9f9cb72172ba61ded3344e43577f9baf227 /src/progs/psp
parentd5d77862d18d9246d246969afc869713877f80fc (diff)
downloadpiklab-dc5b11fc7d45bfeabd0866b8821fefbfc7fd1209.tar.gz
piklab-dc5b11fc7d45bfeabd0866b8821fefbfc7fd1209.zip
CMake conversion
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 199d48de5c43ab5da32fdfe2006f9d89bd4b6d17)
Diffstat (limited to 'src/progs/psp')
-rw-r--r--src/progs/psp/CMakeLists.txt6
-rw-r--r--src/progs/psp/base/CMakeLists.txt16
-rw-r--r--src/progs/psp/gui/CMakeLists.txt6
-rw-r--r--src/progs/psp/xml/CMakeLists.txt9
4 files changed, 37 insertions, 0 deletions
diff --git a/src/progs/psp/CMakeLists.txt b/src/progs/psp/CMakeLists.txt
new file mode 100644
index 0000000..80e4ca1
--- /dev/null
+++ b/src/progs/psp/CMakeLists.txt
@@ -0,0 +1,6 @@
+
+##### subfolders
+
+add_subdirectory( xml )
+add_subdirectory( base )
+add_subdirectory( gui )
diff --git a/src/progs/psp/base/CMakeLists.txt b/src/progs/psp/base/CMakeLists.txt
new file mode 100644
index 0000000..aab4414
--- /dev/null
+++ b/src/progs/psp/base/CMakeLists.txt
@@ -0,0 +1,16 @@
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+##### libpsp (static)
+
+add_custom_command(
+ OUTPUT psp_data.cpp
+ COMMAND xml_psp_parser ${CMAKE_CURRENT_SOURCE_DIR}
+)
+
+tde_add_library( psp STATIC_PIC AUTOMOC
+ SOURCES
+ psp.cpp psp_prog.cpp psp_serial.cpp ${CMAKE_CURRENT_BINARY_DIR}/psp_data.cpp
+)
diff --git a/src/progs/psp/gui/CMakeLists.txt b/src/progs/psp/gui/CMakeLists.txt
new file mode 100644
index 0000000..13199cc
--- /dev/null
+++ b/src/progs/psp/gui/CMakeLists.txt
@@ -0,0 +1,6 @@
+
+##### libpspui (static)
+
+tde_add_library( pspui STATIC_PIC AUTOMOC
+ SOURCES psp_group_ui.cpp
+)
diff --git a/src/progs/psp/xml/CMakeLists.txt b/src/progs/psp/xml/CMakeLists.txt
new file mode 100644
index 0000000..90a7495
--- /dev/null
+++ b/src/progs/psp/xml/CMakeLists.txt
@@ -0,0 +1,9 @@
+
+##### xml_psp_parser (executable)
+
+tde_add_executable( xml_psp_parser AUTOMOC
+ SOURCES xml_psp_parser.cpp
+ LINK
+ devicelistnoui-static pic-static picbase-static picxml-static mem24-static mem24base-static mem24xml-static
+ xmltodata-static devicebase-static common-static tdecore-shared
+)