1
0
Fork 0
mirror of https://github.com/gwm17/Specter.git synced 2025-02-16 17:38:51 -05:00

Fixed some Linux related premake linking commands (add pthread, define glad macro for implot backend)

This commit is contained in:
Gordon McCann 2022-03-29 17:19:23 -04:00
parent 6837418ffa
commit a27ebfe6e0

View File

@ -85,6 +85,7 @@ project "Navigator"
systemversion "latest" systemversion "latest"
defines { defines {
"GLFW_INCLUDE_NONE", "GLFW_INCLUDE_NONE",
"IMGUI_IMPL_OPENGL_LOADER_GLAD",
"IMPLOT_BACKEND_ENABLE_OPENGL3" "IMPLOT_BACKEND_ENABLE_OPENGL3"
} }
@ -202,6 +203,9 @@ project "NavProject"
"ImGui", "ImGui",
"dl" "dl"
} }
linkoptions {
"-pthread"
}