diff options
author | Adam Scott <ascott.ca@gmail.com> | 2023-07-22 08:46:14 -0400 |
---|---|---|
committer | Adam Scott <ascott.ca@gmail.com> | 2023-07-23 19:23:01 -0400 |
commit | 9d9f4279ed63da1372d59bc033655eed502fe80e (patch) | |
tree | 0621d82d4af7857de98d46163be517bc3bdc0fb3 /tools/android.py | |
parent | 1009da4d7e395abadfdb454cff6623e9456181c4 (diff) | |
download | redot-cpp-9d9f4279ed63da1372d59bc033655eed502fe80e.tar.gz |
Add platform macros
Diffstat (limited to 'tools/android.py')
-rw-r--r-- | tools/android.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/android.py b/tools/android.py index b9077f5..4735345 100644 --- a/tools/android.py +++ b/tools/android.py @@ -100,3 +100,5 @@ def generate(env): ) env.Append(CCFLAGS=arch_info["ccflags"]) env.Append(LINKFLAGS=["--target=" + arch_info["target"] + env["android_api_level"], "-march=" + arch_info["march"]]) + + env.Append(CPPDEFINES=["ANDROID_ENABLED", "UNIX_ENABLED"]) |