summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-03-10 20:05:28 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-03-10 20:05:28 +0100
commit67f519a95e2e33f95eccaef80e470993bf9987a7 (patch)
tree776888829ba23857f9d4f175e3b37ba232361c52 /src/main.cpp
parent12370f4030071f2c0532733b040791dc5f885c24 (diff)
add glfw to dependencies list, close #4
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ac515e5..55487f2 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -99,6 +99,13 @@ static void _ts_create_popups() {
ImGui::TreePop();
}
+ if (ImGui::TreeNode("https://github.com/glfw/glfw")) {
+ char* license = (char*)_binary_glfw_LICENSE_start;
+ int64_t license_length = _binary_glfw_LICENSE_end - _binary_glfw_LICENSE_start;
+ ImGui::Text("%.*s", (int)license_length, license);
+ ImGui::TreePop();
+ }
+
if (ImGui::TreeNode("https://github.com/nothings/stb/blob/master/stb_image.h")) {
ImGui::Text("public domain");
ImGui::TreePop();