Skip to content

Commit d9a4b13

Browse files
author
SShikhali
committed
Initial
1 parent e78e447 commit d9a4b13

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,21 @@ bin
99
*.user
1010
*.ini
1111
*.json
12+
13+
bin/
14+
bin-int/
15+
16+
## Visual Studio artifacts
17+
.vs
18+
ipch
19+
*.opensdf
20+
*.vcxproj
21+
*.vcxproj.filters
22+
*.log
23+
*.pdb
24+
*.ilk
25+
*.user
26+
*.sdf
27+
*.suo
28+
*.VC.db
29+
*.VC.VC.opendb

premake5.lua

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
project "ImGuiNodeEditor"
2+
kind "Staticlib"
3+
language "C++"
4+
cppdialect "C++17"
5+
staticruntime "Off"
6+
7+
targetdir("bin/" .. outputdir .. "/%{prj.name}")
8+
objdir("bin-int/" .. outputdir .. "/%{prj.name}")
9+
10+
includedirs
11+
{
12+
"%{wks.location}/Eagle/vendor/imgui",
13+
"."
14+
}
15+
16+
files
17+
{
18+
"crude_json.h",
19+
"imgui_bezier_math.h",
20+
"imgui_canvas.h",
21+
"imgui_extra_math.h",
22+
"imgui_node_editor.h",
23+
"imgui_node_editor_internal.h",
24+
"crude_json.cpp",
25+
"imgui_canvas.cpp",
26+
"imgui_node_editor.cpp",
27+
"imgui_node_editor_api.cpp",
28+
"examples/blueprints-example/utilities/builders.h",
29+
"examples/blueprints-example/utilities/drawing.h",
30+
"examples/blueprints-example/utilities/widgets.h",
31+
"examples/blueprints-example/utilities/builders.cpp",
32+
"examples/blueprints-example/utilities/drawing.cpp",
33+
"examples/blueprints-example/utilities/widgets.cpp",
34+
}
35+
36+
filter "system:windows"
37+
systemversion "latest"
38+
39+
filter { "system:windows", "configurations:Debug" }
40+
runtime "Debug"
41+
42+
filter { "system:windows", "configurations:Release" }
43+
runtime "Release"
44+
optimize "Speed"
45+
46+
filter { "system:windows", "configurations:Dist" }
47+
runtime "Release"
48+
optimize "Speed"

0 commit comments

Comments
 (0)