mirror of
https://github.com/glfw/glfw.git
synced 2024-11-15 02:34:36 +00:00
Added missing files to premake
- Also added a missing function to null platform
This commit is contained in:
parent
d710a034f0
commit
aa91434c64
11
premake5.lua
11
premake5.lua
@ -15,9 +15,17 @@ project "GLFW"
|
||||
"src/init.c",
|
||||
"src/input.c",
|
||||
"src/monitor.c",
|
||||
|
||||
"src/null_init.c",
|
||||
"src/null_joystick.c",
|
||||
"src/null_monitor.c",
|
||||
"src/null_window.c",
|
||||
|
||||
"src/platform.c",
|
||||
"src/vulkan.c",
|
||||
"src/window.c"
|
||||
"src/window.c",
|
||||
}
|
||||
|
||||
filter "system:linux"
|
||||
pic "On"
|
||||
|
||||
@ -49,6 +57,7 @@ project "GLFW"
|
||||
{
|
||||
"src/win32_init.c",
|
||||
"src/win32_joystick.c",
|
||||
"src/win32_module.c",
|
||||
"src/win32_monitor.c",
|
||||
"src/win32_time.c",
|
||||
"src/win32_thread.c",
|
||||
|
@ -106,6 +106,7 @@ GLFWbool _glfwConnectNull(int platformID, _GLFWplatform* platform)
|
||||
_glfwWaitEventsNull,
|
||||
_glfwWaitEventsTimeoutNull,
|
||||
_glfwPostEmptyEventNull,
|
||||
_glfwSetWindowTitlebarNull,
|
||||
_glfwGetEGLPlatformNull,
|
||||
_glfwGetEGLNativeDisplayNull,
|
||||
_glfwGetEGLNativeWindowNull,
|
||||
|
Loading…
Reference in New Issue
Block a user