Skip to content
Snippets Groups Projects
Commit 1fe3e46e authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Revert hack from linden

parent 60f40ab0
No related branches found
No related tags found
No related merge requests found
...@@ -165,10 +165,9 @@ if (WINDOWS) ...@@ -165,10 +165,9 @@ if (WINDOWS)
string(REPLACE "/Ob2" "/Ob3" CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE}) string(REPLACE "/Ob2" "/Ob3" CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE})
string(REPLACE "/Ob2" "/Ob3" CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) string(REPLACE "/Ob2" "/Ob3" CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE})
# workaround for github runner image breakage: # configure win32 API for 10 and above compatibility
# https://github.com/actions/runner-images/issues/10004#issuecomment-2153445161 set(WINVER "0x0A00" CACHE STRING "Win32 API Target version (see http://msdn.microsoft.com/en-us/library/aa383745%28v=VS.85%29.aspx)")
# can be removed after the above issue is resolved and deployed across GHA add_compile_definitions(WINVER=${WINVER} _WIN32_WINNT=${WINVER})
add_compile_definitions(_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR)
endif (WINDOWS) endif (WINDOWS)
if (LINUX) if (LINUX)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment