Fixed some stuff

pull/5484/head
Laurenz Kraus 2023-11-22 14:30:19 +01:00
parent 58eab3e230
commit 013d0382b0
2 changed files with 17 additions and 1146 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,6 +5,9 @@ project "Assimp"
staticruntime "off" staticruntime "off"
warnings "off" warnings "off"
targetdir ("bin/" .. outputdir .. "/%{prj.name}")
objdir ("bin-int/" .. outputdir .. "/%{prj.name}")
files files
{ {
"code/AssetLib/**.h", "code/AssetLib/**.h",
@ -26,12 +29,23 @@ project "Assimp"
"code/PostProcessing/*.cpp", "code/PostProcessing/*.cpp",
} }
defines
{
#"ASSIMP_DOUBLE_PRECISION"
}
includedirs
{
"%{prj.location}/code",
"%{prj.location}/include"
}
filter "system:linux" filter "system:linux"
pic "On" pic "On"
systemversion "latest" systemversion "latest"
filter "system:macosx" filter "system:macosx"
pic "On" pic "On"
filter "system:windows" filter "system:windows"
systemversion "latest" systemversion "latest"