add mpanel

This commit is contained in:
Nishi 2025-11-16 18:40:37 +09:00
commit b8c61560b9
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 28 additions and 0 deletions

View file

@ -28,3 +28,4 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_subdirectory(mdm)
add_subdirectory(milkwm)
add_subdirectory(mpanel)

26
mpanel/CMakeLists.txt Normal file
View file

@ -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}
)

1
mpanel/main.c Normal file
View file

@ -0,0 +1 @@
int main(){}