mirror of
https://github.com/pkdawson/imgui-godot.git
synced 2026-09-16 11:44:18 +00:00
11 lines
350 B
Plaintext
11 lines
350 B
Plaintext
Import('env')
|
|
|
|
IMGUI_PATH = "../../imgui"
|
|
IMGUI_GODOT_INCLUDE = "../../../../../addons/imgui-godot/include"
|
|
|
|
env.Append(CPPPATH=[IMGUI_PATH, IMGUI_GODOT_INCLUDE])
|
|
env.Append(CPPDEFINES=['IMGUI_USER_CONFIG="\\"imconfig-godot.h\\""'])
|
|
env.add_source_files(env.modules_sources, f"{IMGUI_PATH}/*.cpp")
|
|
|
|
env.add_source_files(env.modules_sources, "*.cpp")
|