2022-08-26 14:04:03 +08:00
|
|
|
project "SHADE_Application"
|
2022-09-05 15:29:02 +08:00
|
|
|
kind "WindowedApp"
|
2022-08-26 14:04:03 +08:00
|
|
|
language "C++"
|
2022-09-15 01:51:04 +08:00
|
|
|
cppdialect "C++20"
|
2022-09-13 20:35:30 +08:00
|
|
|
targetdir (outputdir)
|
|
|
|
objdir (interdir)
|
2022-08-26 14:04:03 +08:00
|
|
|
systemversion "latest"
|
|
|
|
pchheader "SBpch.h"
|
|
|
|
pchsource "%{prj.location}/src/SBpch.cpp"
|
2022-09-13 18:24:39 +08:00
|
|
|
staticruntime "off"
|
2022-09-08 19:11:25 +08:00
|
|
|
entrypoint "wWinMainCRTStartup"
|
2022-09-05 15:29:02 +08:00
|
|
|
system ("windows")
|
2022-08-26 14:04:03 +08:00
|
|
|
|
|
|
|
files
|
|
|
|
{
|
|
|
|
"%{prj.location}/src/**.h",
|
2022-09-14 09:14:18 +08:00
|
|
|
"%{prj.location}/src/**.hpp",
|
2022-08-26 14:04:03 +08:00
|
|
|
"%{prj.location}/src/**.c",
|
|
|
|
"%{prj.location}/src/**.cpp",
|
|
|
|
"%{prj.location}/src/**.glsl",
|
|
|
|
}
|
|
|
|
|
|
|
|
includedirs
|
|
|
|
{
|
2022-09-08 12:51:23 +08:00
|
|
|
"%{IncludeDir.spdlog}/include",
|
2022-08-26 14:30:41 +08:00
|
|
|
"../SHADE_Engine/src",
|
2022-09-13 21:08:13 +08:00
|
|
|
"src",
|
|
|
|
"%{IncludeDir.dotnet}/include",
|
2022-08-26 14:04:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
flags
|
|
|
|
{
|
|
|
|
"MultiProcessorCompile"
|
|
|
|
}
|
|
|
|
|
|
|
|
links
|
|
|
|
{
|
2022-09-14 09:14:18 +08:00
|
|
|
"SHADE_Engine",
|
2022-08-26 14:04:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
warnings 'Extra'
|
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
symbols "On"
|
|
|
|
defines {"_DEBUG"}
|
|
|
|
|
|
|
|
filter "configurations:Release"
|
|
|
|
optimize "On"
|
2022-09-14 09:14:18 +08:00
|
|
|
defines{"_RELEASE"}
|