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

View file

@ -1,29 +0,0 @@
include(GNUInstallDirs)
macro(setup_project name dir)
project(
${name}
)
file(
GLOB
${name}_SRC
*.c
)
add_executable(
${name}
${${name}_SRC}
)
target_link_libraries(
${name}
PRIVATE
MDELib Mw
)
install(
TARGETS ${name}
DESTINATION ${dir}
)
endmacro()