summaryrefslogtreecommitdiffstats
path: root/src/progs/gpsim
diff options
context:
space:
mode:
Diffstat (limited to 'src/progs/gpsim')
-rw-r--r--src/progs/gpsim/CMakeLists.txt5
-rw-r--r--src/progs/gpsim/base/CMakeLists.txt11
-rw-r--r--src/progs/gpsim/gui/CMakeLists.txt9
3 files changed, 25 insertions, 0 deletions
diff --git a/src/progs/gpsim/CMakeLists.txt b/src/progs/gpsim/CMakeLists.txt
new file mode 100644
index 0000000..4ad2ae3
--- /dev/null
+++ b/src/progs/gpsim/CMakeLists.txt
@@ -0,0 +1,5 @@
+
+##### subfolders
+
+add_subdirectory( base )
+add_subdirectory( gui )
diff --git a/src/progs/gpsim/base/CMakeLists.txt b/src/progs/gpsim/base/CMakeLists.txt
new file mode 100644
index 0000000..59c1e8c
--- /dev/null
+++ b/src/progs/gpsim/base/CMakeLists.txt
@@ -0,0 +1,11 @@
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+##### libgpsim (static)
+
+tde_add_library( gpsim STATIC_PIC AUTOMOC
+ SOURCES
+ gpsim.cpp gpsim_debug.cpp
+)
diff --git a/src/progs/gpsim/gui/CMakeLists.txt b/src/progs/gpsim/gui/CMakeLists.txt
new file mode 100644
index 0000000..a284597
--- /dev/null
+++ b/src/progs/gpsim/gui/CMakeLists.txt
@@ -0,0 +1,9 @@
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+##### libgpsimui (static)
+
+tde_add_library( gpsimui STATIC_PIC AUTOMOC
+ SOURCES gpsim_group_ui.cpp
+)