medfall

Log | Files | Refs

commit 29050d4ed2bed6f4d042f742ab29108745065318
parent ed975875555f96a5f2742034bcc32f21b3392225
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue May  9 02:11:45 +0300

Forgot to add the libs build files!

Diffstat:
libs/glfw.lua | 9+++++++++
libs/imgui.lua | 2++
libs/monocypher.lua | 1+
libs/squish.lua | 7+++++++
libs/tinyobjloader.lua | 1+
5 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/libs/glfw.lua b/libs/glfw.lua @@ -0,0 +1,9 @@ +lib( "glfw", { + "libs/glfw/src/context", "libs/glfw/src/init", "libs/glfw/src/input", + "libs/glfw/src/monitor", "libs/glfw/src/vulkan", "libs/glfw/src/window", + "libs/glfw/src/x11_init", "libs/glfw/src/x11_monitor", "libs/glfw/src/x11_window", + "libs/glfw/src/xkb_unicode", "libs/glfw/src/linux_joystick", "libs/glfw/src/posix_time", + "libs/glfw/src/posix_tls", "libs/glfw/src/glx_context", "libs/glfw/src/egl_context", +} ) + +obj_replace_cxxflags( "libs/glfw/src/%", "-c -x c -O2 -D_GLFW_X11" ) diff --git a/libs/imgui.lua b/libs/imgui.lua @@ -0,0 +1,2 @@ +lib( "imgui", { "libs/imgui/imgui", "libs/imgui/imgui_draw", "libs/imgui/imgui_impl_glfw_gl3" } ) +obj_cxxflags( "libs/imgui/imgui_draw", "-Wno-maybe-uninitialized" ) diff --git a/libs/monocypher.lua b/libs/monocypher.lua @@ -0,0 +1 @@ +lib( "monocypher", { "libs/monocypher/monocypher" } ) diff --git a/libs/squish.lua b/libs/squish.lua @@ -0,0 +1,7 @@ +lib( "squish", { + "libs/squish/alpha", "libs/squish/colourfit", "libs/squish/rangefit", + "libs/squish/clusterfit", "libs/squish/colourset", "libs/squish/singlecolourfit", + "libs/squish/colourblock", "libs/squish/maths", "libs/squish/squish", +} ) + +obj_cxxflags( "libs/squish/%", "-O3" ) diff --git a/libs/tinyobjloader.lua b/libs/tinyobjloader.lua @@ -0,0 +1 @@ +lib( "tinyobjloader", { "libs/tinyobjloader/tinyobjloader" } )