-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathroot.build
28 lines (22 loc) · 946 Bytes
/
root.build
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
# Uncomment to suppress warnings coming from external libraries.
#
#cxx.internal.scope = current
cxx.std = latest
using cxx
hxx{*}: extension = h
cxx{*}: extension = cpp
# Assume headers are importable unless stated otherwise.
#
hxx{*}: cxx.importable = true
# The test target for cross-testing (running tests under Wine, etc).
#
test.target = $cxx.target
# ImGui configuration variables
# For more information, refer to libimgui/imgui/imconfig.h
config [bool] config.libimgui.disable ?= false # Disables all ImGui functionality
config [bool] config.libimgui.disable_demo_windows ?= false
config [bool] config.libimgui.disable_metrics_window ?= false
config [bool] config.libimgui.disable_obsolete_functions ?= false
config [bool] config.libimgui.use_bgra_packed_color ?= false
config [bool] config.libimgui.use_wchar32 ?= false
config [bool] config.libimgui.use_32bit_indices ?= false