Added configuration and platform specific to all required Assimp libs
parent
5976069c07
commit
0cc771c0c8
|
@ -26,6 +26,7 @@ project "openddlparser"
|
||||||
"OPENDDLPARSER_BUILD"
|
"OPENDDLPARSER_BUILD"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- OS specific
|
||||||
filter "system:linux"
|
filter "system:linux"
|
||||||
pic "On"
|
pic "On"
|
||||||
systemversion "latest"
|
systemversion "latest"
|
||||||
|
@ -34,4 +35,18 @@ project "openddlparser"
|
||||||
pic "On"
|
pic "On"
|
||||||
|
|
||||||
filter "system:windows"
|
filter "system:windows"
|
||||||
systemversion "latest"
|
systemversion "latest"
|
||||||
|
|
||||||
|
-- Configuration stuff
|
||||||
|
filter "configurations:Debug"
|
||||||
|
runtime "Debug"
|
||||||
|
symbols "on"
|
||||||
|
|
||||||
|
filter "configurations:Release"
|
||||||
|
runtime "Release"
|
||||||
|
optimize "Speed"
|
||||||
|
|
||||||
|
filter "configurations:DIST"
|
||||||
|
runtime "Release"
|
||||||
|
symbols "off"
|
||||||
|
optimize "Speed"
|
|
@ -14,12 +14,27 @@ project "pugixml"
|
||||||
"src/*.cpp",
|
"src/*.cpp",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- OS specific
|
||||||
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"
|
||||||
|
|
||||||
|
-- Configuration stuff
|
||||||
|
filter "configurations:Debug"
|
||||||
|
runtime "Debug"
|
||||||
|
symbols "on"
|
||||||
|
|
||||||
|
filter "configurations:Release"
|
||||||
|
runtime "Release"
|
||||||
|
optimize "Speed"
|
||||||
|
|
||||||
|
filter "configurations:Dist"
|
||||||
|
runtime "Release"
|
||||||
|
symbols "off"
|
||||||
|
optimize "Speed"
|
|
@ -13,12 +13,27 @@ project "zip"
|
||||||
"%{prj.location}/src/*.c"
|
"%{prj.location}/src/*.c"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- OS specific
|
||||||
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"
|
||||||
|
|
||||||
|
-- Configuration stuff
|
||||||
|
filter "configurations:Debug"
|
||||||
|
runtime "Debug"
|
||||||
|
symbols "on"
|
||||||
|
|
||||||
|
filter "configurations:Release"
|
||||||
|
runtime "Release"
|
||||||
|
optimize "Speed"
|
||||||
|
|
||||||
|
filter "configurations:Dist"
|
||||||
|
runtime "Release"
|
||||||
|
symbols "off"
|
||||||
|
optimize "Speed"
|
||||||
|
|
|
@ -13,6 +13,7 @@ project "zlib"
|
||||||
"%{prj.location}/*.c"
|
"%{prj.location}/*.c"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- OS specific
|
||||||
filter "system:linux"
|
filter "system:linux"
|
||||||
pic "On"
|
pic "On"
|
||||||
systemversion "latest"
|
systemversion "latest"
|
||||||
|
@ -21,4 +22,18 @@ project "zlib"
|
||||||
pic "On"
|
pic "On"
|
||||||
|
|
||||||
filter "system:windows"
|
filter "system:windows"
|
||||||
systemversion "latest"
|
systemversion "latest"
|
||||||
|
|
||||||
|
-- Configuration stuff
|
||||||
|
filter "configurations:Debug"
|
||||||
|
runtime "Debug"
|
||||||
|
symbols "on"
|
||||||
|
|
||||||
|
filter "configurations:Release"
|
||||||
|
runtime "Release"
|
||||||
|
optimize "Speed"
|
||||||
|
|
||||||
|
filter "configurations:Dist"
|
||||||
|
runtime "Release"
|
||||||
|
symbols "off"
|
||||||
|
optimize "Speed"
|
||||||
|
|
|
@ -60,6 +60,7 @@ project "Assimp"
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- OS specific
|
||||||
filter "system:linux"
|
filter "system:linux"
|
||||||
pic "On"
|
pic "On"
|
||||||
systemversion "latest"
|
systemversion "latest"
|
||||||
|
@ -70,10 +71,16 @@ project "Assimp"
|
||||||
filter "system:windows"
|
filter "system:windows"
|
||||||
systemversion "latest"
|
systemversion "latest"
|
||||||
|
|
||||||
|
-- Configuration stuff
|
||||||
filter "configurations:Debug"
|
filter "configurations:Debug"
|
||||||
runtime "Debug"
|
runtime "Debug"
|
||||||
symbols "on"
|
symbols "on"
|
||||||
|
|
||||||
filter "configurations:Release"
|
filter "configurations:Release"
|
||||||
runtime "Release"
|
runtime "Release"
|
||||||
optimize "on"
|
optimize "Speed"
|
||||||
|
|
||||||
|
filter "configurations:Dist"
|
||||||
|
runtime "Release"
|
||||||
|
symbols "off"
|
||||||
|
optimize "Speed"
|
Loading…
Reference in New Issue