ci: Add Windows to CI

This commit is contained in:
Juan Ramos
2023-07-17 12:38:05 -06:00
committed by Juan Ramos
parent bc14fdad60
commit 6eee20744f
2 changed files with 25 additions and 1 deletions

View File

@@ -25,6 +25,14 @@ if(${CMAKE_C_COMPILER_ID} MATCHES "(GNU|Clang)")
)
endif()
if (MSVC)
add_compile_options(
/W4
/permissive-
/WX
)
endif()
# vk_icd.h
add_executable(vk_icd vk_icd.c)
target_link_libraries(vk_icd PRIVATE Vulkan::Headers)