Sha256: 5b1885bf77e4be8abfcb63a06db185e7513900daa439b8332c7b7bc5505c1462
Contents?: true
Size: 792 Bytes
Versions: 21
Compression:
Stored size: 792 Bytes
Contents
lib_sources = { "../../tiny_obj_loader.cc" } sources = { "obj_sticher.cc", "obj_writer.cc", } -- premake4.lua solution "ObjStickerSolution" configurations { "Release", "Debug" } if (os.is("windows")) then platforms { "x32", "x64" } else platforms { "native", "x32", "x64" } end includedirs { "../../" } -- A project defines one build target project "obj_sticher" kind "ConsoleApp" language "C++" files { lib_sources, sources } configuration "Debug" defines { "DEBUG" } -- -DDEBUG flags { "Symbols" } targetname "obj_sticher_debug" configuration "Release" -- defines { "NDEBUG" } -- -NDEBUG flags { "Symbols", "Optimize" } targetname "obj_sticher"
Version data entries
21 entries across 21 versions & 1 rubygems