81 lines
1.5 KiB
Lua
81 lines
1.5 KiB
Lua
AssimpInclude = "%{wks.location}\\Dependencies\\assimp"
|
|
|
|
project "ModelCompileLibrary"
|
|
kind "ConsoleApp"
|
|
language "C++"
|
|
cppdialect "C++20"
|
|
targetdir (outputdir)
|
|
objdir (interdir)
|
|
systemversion "latest"
|
|
|
|
|
|
configurations
|
|
{
|
|
"Debug",
|
|
"Release",
|
|
"Publish"
|
|
}
|
|
|
|
files
|
|
{
|
|
"%{prj.location}/src/**.h",
|
|
"%{prj.location}/src/**.cpp",
|
|
}
|
|
|
|
externalincludedirs
|
|
{
|
|
"%{AssimpInclude}\\include"
|
|
}
|
|
|
|
includedirs
|
|
{
|
|
"%{prj.location}/src",
|
|
}
|
|
|
|
externalwarnings "Off"
|
|
|
|
libdirs
|
|
{
|
|
"%{AssimpInclude}/lib/Debug",
|
|
"%{AssimpInclude}/lib/Release"
|
|
}
|
|
|
|
flags
|
|
{
|
|
"MultiProcessorCompile"
|
|
}
|
|
|
|
filter "configurations:Debug"
|
|
postbuildcommands
|
|
{
|
|
"xcopy /r /y /q \"%{AssimpInclude}\\bin\\Debug\\assimp-vc142-mtd.dll\" \"$(OutDir)\""
|
|
}
|
|
|
|
filter "configurations:Release"
|
|
postbuildcommands
|
|
{
|
|
"xcopy /r /y /q \"%{AssimpInclude}\\bin\\Release\\assimp-vc142-mt.dll\" \"$(OutDir)\""
|
|
}
|
|
|
|
filter "configurations:Publish"
|
|
postbuildcommands
|
|
{
|
|
"xcopy /r /y /q \"%{AssimpInclude}\\bin\\Release\\assimp-vc142-mt.dll\" \"$(OutDir)\""
|
|
}
|
|
|
|
warnings 'Extra'
|
|
|
|
filter "configurations:Debug"
|
|
symbols "On"
|
|
defines {"_DEBUG"}
|
|
links{"assimp-vc142-mtd.lib"}
|
|
|
|
filter "configurations:Release"
|
|
optimize "On"
|
|
defines{"_RELEASE"}
|
|
links{"assimp-vc142-mt.lib"}
|
|
|
|
filter "configurations:Publish"
|
|
optimize "On"
|
|
defines{"_RELEASE, _PUBLISH"}
|
|
links{"assimp-vc142-mt.lib"} |