summaryrefslogtreecommitdiffstats
path: root/src/progs/bootloader
diff options
context:
space:
mode:
Diffstat (limited to 'src/progs/bootloader')
-rw-r--r--src/progs/bootloader/CMakeLists.txt5
-rw-r--r--src/progs/bootloader/base/CMakeLists.txt10
-rw-r--r--src/progs/bootloader/gui/CMakeLists.txt6
3 files changed, 21 insertions, 0 deletions
diff --git a/src/progs/bootloader/CMakeLists.txt b/src/progs/bootloader/CMakeLists.txt
new file mode 100644
index 0000000..4ad2ae3
--- /dev/null
+++ b/src/progs/bootloader/CMakeLists.txt
@@ -0,0 +1,5 @@
+
+##### subfolders
+
+add_subdirectory( base )
+add_subdirectory( gui )
diff --git a/src/progs/bootloader/base/CMakeLists.txt b/src/progs/bootloader/base/CMakeLists.txt
new file mode 100644
index 0000000..790a7de
--- /dev/null
+++ b/src/progs/bootloader/base/CMakeLists.txt
@@ -0,0 +1,10 @@
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+##### libbootloader (static)
+
+tde_add_library( bootloader STATIC_PIC AUTOMOC
+ SOURCES bootloader.cpp bootloader_prog.cpp
+)
diff --git a/src/progs/bootloader/gui/CMakeLists.txt b/src/progs/bootloader/gui/CMakeLists.txt
new file mode 100644
index 0000000..1c14d39
--- /dev/null
+++ b/src/progs/bootloader/gui/CMakeLists.txt
@@ -0,0 +1,6 @@
+
+##### libbootloaderui (static)
+
+tde_add_library( bootloaderui STATIC_PIC AUTOMOC
+ SOURCES bootloader_ui.cpp
+)