forked from MLXProjects/libaroma
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-win.txt
65 lines (52 loc) · 2.05 KB
/
config-win.txt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#config sample for Windows
#
# lines with # character at start will not be processed
# spaced paths are supported, double quotes are not needed but can be used.
# this sets the path to the compiler to be used
LIBAROMA_TOOLCHAIN_PREFIX = C:\Program Files\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin\
# target processor architecture; can be arm, arm64, x86, x86_64 or mips
# LIBAORMA_ARCH_APPEND should be filled only when building for ARM, and it's value
# should be "neon". If building for armv6 or any other, leave empty.
# (default: arm)
LIBAROMA_ARCH=x86
#LIBAROMA_ARCH=arm
#LIBAROMA_ARCH_APPEND=neon
# target platform; can be android, linux, sdl, qnx or rpi (special for raspberry pi)
#LIBAROMA_PLATFORM=android
LIBAROMA_PLATFORM=sdl
# enable debug features (default: 0)
# LIBAROMA_DEBUG_ENABLED=1
# build libdrm and enable minui graphics backend (default: 0)
# warning: not compatible with non-neon arm targets
#LIBAROMA_BUILD_DRM=1
# render unicode characters with harfbuzz (default: 1)
LIBAROMA_BUILD_HARFBUZZ=0
# enable jpeg support - arm neon only (default: 0)
#LIBAROMA_BUILD_JPEG=1
# build aroma runtime (wip, does nothing rn)
# LIBAROMA_BUILD_RUNTIME=0
# libaroma debug level (default: 3):
# (parenthesis means debug function name in code, see src\aroma\debug.h)
# 1=error (ALOGE)
# 2=1+info (ALOGI)
# 3=2+strings (ALOGS) - almost unused
# 4=3+warnings (ALOGW)
# 5=4+verbose (ALOGV)
# 6=5+handled input events (ALOGT)
# 7=6+raw input events (ALOGRT)
LIBAROMA_CONFIG_DEBUG=5
# show file name in libaroma error logs (default: 0):
# 0=don't show
# 1=show file name
# 2=show file name and line number
LIBAROMA_CONFIG_DEBUG_FILE=2
# optional, used when debug enabled to run apps.
# put absolute path to a gdb static binary compatible with the target
#LIBAROMA_GDB=C:\Users\MLX\Downloads\gdb-arm-static-7.11
# handle compilation warnings: (default: 0)
# 0=don't show
# 1=show
# 2=show with extra
LIBAROMA_COMPILER_WARNINGS=2
# treat warnings as errors (default: 0)
#LIBAROMA_COMPILER_ERROR_ON_WARN=0