milsko/examples/dxdemos/CMakeLists.txt
IoI_xD e98b4ca0c1
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
Update examples/dxdemos/CMakeLists.txt
2026-09-19 02:00:27 +09:00

15 lines
254 B
CMake

file(
GLOB
EXAMPLES_DIRECTX_SOURCES
*.c
)
foreach(PATH IN LISTS EXAMPLES_DIRECTX_SOURCES)
get_filename_component(TARGET ${PATH} NAME_WE)
add_executable(${TARGET} ${PATH})
target_link_libraries(
${TARGET}
PRIVATE
Mw
)
endforeach()