Added missing files to premake

- Also added a missing function to null platform
This commit is contained in:
TheCherno 2022-02-22 12:53:35 +11:00
parent d710a034f0
commit aa91434c64
2 changed files with 11 additions and 1 deletions

View File

@ -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",

View File

@ -106,6 +106,7 @@ GLFWbool _glfwConnectNull(int platformID, _GLFWplatform* platform)
_glfwWaitEventsNull,
_glfwWaitEventsTimeoutNull,
_glfwPostEmptyEventNull,
_glfwSetWindowTitlebarNull,
_glfwGetEGLPlatformNull,
_glfwGetEGLNativeDisplayNull,
_glfwGetEGLNativeWindowNull,