feat: fixed postbuildcommands not executing, set dialect to C++20

main
Sara 2025-01-08 16:43:19 +01:00
parent eca124753f
commit 7c72f7f826
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,10 @@ workspace "game"
project "game"
kind "WindowedApp"
language "c++"
cppdialect "c++20"
language "C++"
cppdialect "C++20"
location "build/"
postbuildcommands "{COPYDIR} ../resources %{cfg.targetdir}"
files { "src/**.cpp" }
includedirs { "src/" }
links { "SDL2", "SDL2_image", "m" }
@ -20,4 +21,3 @@ project "game"
defines { "NDEBUG" }
optimize "On"
symbols "Off"
postbuildcommands "{COPYDIR} ../resources %{cfg.targetdir}"