full windows build?
Some checks failed
demo.yaml / full windows build? (push) Failing after 0s

This commit is contained in:
Jorijn van der Graaf 2026-03-01 14:57:47 +01:00
commit c4686ae1cc
5 changed files with 159 additions and 42 deletions

View file

@ -58,7 +58,12 @@ namespace Crafter {
if(config.contains("standard")) {
standard = config["standard"].get<std::string>();
} else {
#ifdef CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_pc_linux_gnu
standard = "c++26";
#endif
#if defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_pc_windows_msvc) || defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_w64_mingw32)
standard = "c++latest";
#endif
}
if(config.contains("target")) {
target = config["target"].get<std::string>();