From b5a750349ca862faf36f68057d457b5d3d362a7e Mon Sep 17 00:00:00 2001 From: SweetId <2630750+SweetId@users.noreply.github.com> Date: Mon, 16 Oct 2023 19:28:48 -0400 Subject: [PATCH] moving project to C++20 --- xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake.lua b/xmake.lua index bd89858..7a7afe0 100644 --- a/xmake.lua +++ b/xmake.lua @@ -11,7 +11,7 @@ add_requires("nazaraengine", { alias = "nazara", debug = is_mode("debug") }) add_requires("nazaraimgui", { alias = "nzimgui", debug = is_mode("debug") }) add_includedirs("include", "src") -set_languages("c89", "c++17") +set_languages("c89", "c++20") set_rundir("./bin/$(plat)_$(arch)_$(mode)") set_targetdir("./bin/$(plat)_$(arch)_$(mode)")