From b8c61560b92f226dd6e4b925ea2e0d90df439d6b Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sun, 16 Nov 2025 18:40:37 +0900 Subject: [PATCH] add mpanel --- CMakeLists.txt | 1 + mpanel/CMakeLists.txt | 26 ++++++++++++++++++++++++++ mpanel/main.c | 1 + 3 files changed, 28 insertions(+) create mode 100644 mpanel/CMakeLists.txt create mode 100644 mpanel/main.c diff --git a/CMakeLists.txt b/CMakeLists.txt index b35678c..f0d4fd0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,3 +28,4 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) add_subdirectory(mdm) add_subdirectory(milkwm) +add_subdirectory(mpanel) diff --git a/mpanel/CMakeLists.txt b/mpanel/CMakeLists.txt new file mode 100644 index 0000000..2e19543 --- /dev/null +++ b/mpanel/CMakeLists.txt @@ -0,0 +1,26 @@ +project( + mpanel +) + +file( + GLOB + mpanel_SRC + *.c +) + +add_executable( + mpanel + ${mpanel_SRC} +) + +target_link_libraries( + mdm + PRIVATE + MDELib +) + +include(GNUInstallDirs) +install( + TARGETS mpanel + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) diff --git a/mpanel/main.c b/mpanel/main.c new file mode 100644 index 0000000..979a1cd --- /dev/null +++ b/mpanel/main.c @@ -0,0 +1 @@ +int main(){}