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

Version Path
pixo-0.4.5 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.4.4 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.4.3 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.4.2 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.4.1 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.4.0 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.3.2 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.3.1 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.3.0 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.6 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.5 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.4 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.3 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.2 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.1 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.2.0 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.1.4 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.1.3 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.1.2 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua
pixo-0.1.1 ext/pixo/ext/tinyobjloader/examples/obj_sticher/premake4.lua