We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebee10f commit bf6e9ceCopy full SHA for bf6e9ce
cmake/jakt-executable.cmake
@@ -50,6 +50,10 @@ function(add_jakt_compiler_flags target)
50
target_compile_features("${target}" PRIVATE cxx_std_23)
51
52
if (WIN32)
53
+ target_compile_options("${target}" PRIVATE
54
+ # AK complains about having to include <memory>, not a problem for us.
55
+ "-Wno-#warnings"
56
+ )
57
cmake_policy(GET CMP0091 msvc_runtime_prop_enabled)
58
if (NOT msvc_runtime_prop_enabled STREQUAL "NEW")
59
message(WARNING "CMake Policy CMP0091 is not set to NEW, linker errors from jakt_runtime may result")
0 commit comments