| sources = { | |
| "loader_example.cc", | |
| } | |
| -- premake4.lua | |
| solution "TinyObjLoaderSolution" | |
| configurations { "Release", "Debug" } | |
| if (os.is("windows")) then | |
| platforms { "x32", "x64" } | |
| else | |
| platforms { "native", "x32", "x64" } | |
| end | |
| -- A project defines one build target | |
| project "tinyobjloader" | |
| kind "ConsoleApp" | |
| language "C++" | |
| files { sources } | |
| configuration "Debug" | |
| defines { "DEBUG" } -- -DDEBUG | |
| flags { "Symbols" } | |
| targetname "loader_example_debug" | |
| configuration "Release" | |
| -- defines { "NDEBUG" } -- -NDEBUG | |
| flags { "Symbols", "Optimize" } | |
| targetname "loader_example" | |