update to build scripts for msvc
This commit is contained in:
parent
4030b010b5
commit
89e3a26bcc
|
|
@ -1,7 +1,6 @@
|
|||
project "Editor"
|
||||
language "C++"
|
||||
cppdialect "C++17"
|
||||
cdialect "C17"
|
||||
systemversion "latest"
|
||||
targetname "Editor"
|
||||
links {"Engine-Core"}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
project "Engine-Core"
|
||||
language "C++"
|
||||
cppdialect "C++17"
|
||||
cdialect "C17"
|
||||
systemversion "latest"
|
||||
kind "StaticLib"
|
||||
|
||||
|
|
@ -31,6 +30,12 @@ project "Engine-Core"
|
|||
|
||||
libdirs {vs_sfmldir .."/lib"}
|
||||
|
||||
filter {"action:vs*", "system:windows", "configurations:Debug"}
|
||||
postbuildcommands
|
||||
{
|
||||
'{COPY} "%{prj.location}/vendor/sfml/lib/*.pdb" "%{cfg.targetdir}"'
|
||||
}
|
||||
|
||||
--not visual studio --
|
||||
filter {"not action:vs*", "system:windows"}
|
||||
targetdir (corelibdir)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
project "Game"
|
||||
language "C++"
|
||||
cppdialect "C++17"
|
||||
cdialect "C17"
|
||||
systemversion "latest"
|
||||
targetname "Game"
|
||||
links {"Engine-Core"}
|
||||
|
|
|
|||
Loading…
Reference in New Issue