Skip to content

Commit

Permalink
🚨 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesFouchy committed Sep 3, 2024
1 parent c81d684 commit 7c331ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "*"

env:
cmake_configure_args: -D WARNINGS_AS_ERRORS_FOR_COOLLAB_LAUNCHER=ON
cmake_configure_args: "" # -D WARNINGS_AS_ERRORS_FOR_COOLLAB_LAUNCHER=ON # TODO(Launcher) Check warnings
cmakelists_folder: "."
cmake_target: Coollab-Launcher

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ set(WARNINGS_AS_ERRORS_FOR_COOLLAB_LAUNCHER OFF CACHE BOOL "ON iff you want to t

if(WARNINGS_AS_ERRORS_FOR_COOLLAB_LAUNCHER)
if(MSVC)
target_compile_options(Coollab-Launcher-Properties PRIVATE /WX)
target_compile_options(Coollab-Launcher-Properties INTERFACE /WX)
else()
target_compile_options(Coollab-Launcher-Properties PRIVATE -Werror)
target_compile_options(Coollab-Launcher-Properties INTERFACE -Werror)
endif()
endif()

Expand Down

0 comments on commit 7c331ef

Please sign in to comment.