This commit is contained in:
Nishi 2025-11-16 04:15:10 +09:00
commit 04fdf18d0d
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 23 additions and 3 deletions

20
milkwm/CMakeLists.txt Normal file
View file

@ -0,0 +1,20 @@
project(
milkwm
)
file(
GLOB
milkwm_SRC
*.c
)
add_executable(
milkwm
${milkwm_SRC}
)
include(GNUInstallDirs)
install(
TARGETS milkwm
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)