diff --git a/premake5.lua b/premake5.lua new file mode 100644 index 000000000..f804d9864 --- /dev/null +++ b/premake5.lua @@ -0,0 +1,37 @@ +project "Assimp" + kind "StaticLib" + language "C++" + cppdialect "C++11" + staticruntime "off" + warnings "off" + + files + { + "code/AssetLib/**.h", + "code/AssetLib/**.cpp", + + "code/Common/*.h", + "code/Common/*.cpp", + + "code/Geometry/*.h", + "code/Geometry/*.cpp", + + "code/Material/*.h", + "code/Material/*.cpp", + + "code/Pbrt/*.h", + "code/Pbrt/*.cpp", + + "code/PostProcessing/*.h", + "code/PostProcessing/*.cpp", + } + + filter "system:linux" + pic "On" + systemversion "latest" + + filter "system:macosx" + pic "On" + + filter "system:windows" + systemversion "latest"