enforce code style warnings

This commit is contained in:
Luka Jankovic 2025-07-02 22:53:31 +02:00
parent c72a215afb
commit 54a49c2d60
10 changed files with 47 additions and 108 deletions

View file

@ -40,4 +40,10 @@ set(SOURCES
add_executable(kubo ${SOURCES})
if(MSVC)
target_compile_options(kubo PRIVATE /W4 /WX)
else()
target_compile_options(kubo PRIVATE -Wall -Wextra -Werror)
endif()
target_link_libraries(kubo raylib)