This commit is contained in:
Nishi 2025-11-16 04:51:00 +09:00
commit 7fdf15abbb
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 27 additions and 0 deletions

26
mdm/CMakeLists.txt Normal file
View file

@ -0,0 +1,26 @@
project(
mdm
)
file(
GLOB
mdm_SRC
*.c
)
add_executable(
mdm
${mdm_SRC}
)
target_link_libraries(
mdm
PRIVATE
MDELib
)
include(GNUInstallDirs)
install(
TARGETS mdm
RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR}
)

1
mdm/main.c Normal file
View file

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