feat: fixed postbuildcommands not executing, set dialect to C++20
parent
eca124753f
commit
7c72f7f826
|
@ -4,9 +4,10 @@ workspace "game"
|
||||||
|
|
||||||
project "game"
|
project "game"
|
||||||
kind "WindowedApp"
|
kind "WindowedApp"
|
||||||
language "c++"
|
language "C++"
|
||||||
cppdialect "c++20"
|
cppdialect "C++20"
|
||||||
location "build/"
|
location "build/"
|
||||||
|
postbuildcommands "{COPYDIR} ../resources %{cfg.targetdir}"
|
||||||
files { "src/**.cpp" }
|
files { "src/**.cpp" }
|
||||||
includedirs { "src/" }
|
includedirs { "src/" }
|
||||||
links { "SDL2", "SDL2_image", "m" }
|
links { "SDL2", "SDL2_image", "m" }
|
||||||
|
@ -20,4 +21,3 @@ project "game"
|
||||||
defines { "NDEBUG" }
|
defines { "NDEBUG" }
|
||||||
optimize "On"
|
optimize "On"
|
||||||
symbols "Off"
|
symbols "Off"
|
||||||
postbuildcommands "{COPYDIR} ../resources %{cfg.targetdir}"
|
|
||||||
|
|
Loading…
Reference in New Issue