diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index f03c39bd0..c0ea9c9cd 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -70,6 +70,7 @@ if(MSVC) /WX /W4 /wd4127 + /wd4267 /wd4456 /wd4706 /experimental:external @@ -78,7 +79,17 @@ if(MSVC) "$<$:/O2>" ) else() - target_compile_options(${OLIVE_TARGET} PRIVATE -O2 -Werror -Wuninitialized -pedantic-errors -Wall -Wextra -Wno-unused-parameter) + target_compile_options( + ${OLIVE_TARGET} + PRIVATE + -O2 + -Werror + -Wuninitialized + -pedantic-errors + -Wall + -Wextra + -Wno-unused-parameter + ) endif() target_include_directories(