From f1a2deeeff5515542a4d55df5e6f765f5370d16c Mon Sep 17 00:00:00 2001 From: eqdiag Date: Sun, 15 Jan 2023 17:25:08 -0500 Subject: [PATCH] functional premake added --- premake5.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 7ba5dd42..6adc5813 100644 --- a/premake5.lua +++ b/premake5.lua @@ -1,7 +1,9 @@ project "GLFW" kind "StaticLib" + architecture "x64" language "C" + location "../../../build" targetdir "../../../lib" objdir "../../../build/GLFW/obj" @@ -13,9 +15,14 @@ project "GLFW" "src/context.c", "src/init.c", "src/input.c", + "src/platform.c", "src/monitor.c", "src/vulkan.c", - "src/window.c" + "src/window.c", + "src/null_init.c", + "src/null_monitor.c", + "src/null_window.c", + "src/null_joystick.c" } filter "system:linux" pic "On" @@ -49,6 +56,7 @@ project "GLFW" files { "src/win32_init.c", + "src/win32_module.c", "src/win32_joystick.c", "src/win32_monitor.c", "src/win32_time.c",