70 lines
1.2 KiB
Lua
70 lines
1.2 KiB
Lua
project "SHADE_Managed"
|
|
kind "SharedLib"
|
|
language "C++"
|
|
clr "NetCore"
|
|
dotnetframework "net6.0"
|
|
cppdialect "C++17"
|
|
targetdir (outputdir)
|
|
objdir (interdir)
|
|
systemversion "latest"
|
|
pchheader "SHpch.h"
|
|
pchsource "%{prj.location}/src/SHpch.cpp"
|
|
staticruntime "off"
|
|
|
|
files
|
|
{
|
|
"%{prj.location}/src/**.hxx",
|
|
"%{prj.location}/src/**.h++",
|
|
"%{prj.location}/src/**.cxx",
|
|
"%{prj.location}/src/**.h",
|
|
"%{prj.location}/src/**.hpp",
|
|
"%{prj.location}/src/**.c",
|
|
"%{prj.location}/src/**.cpp",
|
|
}
|
|
|
|
includedirs
|
|
{
|
|
"%{prj.location}/src",
|
|
"%{IncludeDir.spdlog}/include",
|
|
"%{IncludeDir.imgui}",
|
|
"%{IncludeDir.imguizmo}",
|
|
"%{IncludeDir.imnodes}",
|
|
"%{IncludeDir.yamlcpp}",
|
|
"%{IncludeDir.RTTR}/include",
|
|
"%{wks.location}/SHADE_Engine/src"
|
|
}
|
|
|
|
links
|
|
{
|
|
"yaml-cpp",
|
|
"imgui",
|
|
"SHADE_Engine"
|
|
}
|
|
|
|
defines
|
|
{
|
|
"NOMINMAX"
|
|
}
|
|
|
|
flags
|
|
{
|
|
"MultiProcessorCompile"
|
|
}
|
|
|
|
dependson
|
|
{
|
|
"yaml-cpp",
|
|
"imgui",
|
|
"SHADE_Engine"
|
|
}
|
|
|
|
warnings 'Extra'
|
|
|
|
filter "configurations:Debug"
|
|
symbols "On"
|
|
defines {"_DEBUG"}
|
|
|
|
filter "configurations:Release"
|
|
optimize "On"
|
|
defines{"_RELEASE"}
|