Fixed some stuff
parent
58eab3e230
commit
013d0382b0
File diff suppressed because it is too large
Load Diff
20
premake5.lua
20
premake5.lua
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue