-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDear_ImGui.gpr
More file actions
31 lines (22 loc) · 789 Bytes
/
Dear_ImGui.gpr
File metadata and controls
31 lines (22 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
with "..\..\OpenGLAda\opengl-glfw\opengl-glfw.gpr";
library project Dear_ImGui is
for Languages use ("Ada", "C++");
for Library_Name use "ImGui";
-- Wrapper for 1.87
--for Source_Dirs use ("src\imgui_v1.87", "src\custom");
--for Source_Dirs use ("src\imgui_v1.87", "src\generated");
-- Wrapper for 1.88 (using cimgui)
for Source_Dirs use ("src\imgui_v1.88", "src\cimgui_v1.88", "src\imgui_v1.88\backends", "src\binding");
for Object_Dir use "obj";
for Library_Dir use "lib";
for Library_Kind use "Static";
package Binder is
for Switches ("ada") use ("-Es", "-E");
end Binder;
package Builder is
for Switches ("ada") use ("-g", "-s");
end Builder;
package Compiler is
for Switches ("ada") use ("-g");
end Compiler;
end Dear_ImGui;