File tree Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments