diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-18 14:58:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 14:58:59 +0100 |
commit | a67a6a5a1819283a0f3eee62ef89fe1e83f7687b (patch) | |
tree | 56b05242e9d1bf088a555ffb862216046b49dbe7 | |
parent | ef63b29da7adbfa6c4e6d7d99ebceb9ef3f35e70 (diff) | |
parent | 6b13f33fb05d7ac10461a079c3eca331b095712e (diff) |
Merge pull request #46171 from akien-mga/scons-editor-always-freetype
SCons: Make freetype module a mandatory editor dependency
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 000c918808..90cc99dd47 100644 --- a/SConstruct +++ b/SConstruct @@ -617,7 +617,7 @@ if selected_platform in platform_list: if env["minizip"]: env.Append(CPPDEFINES=["MINIZIP_ENABLED"]) - editor_module_list = ["regex"] + editor_module_list = ["freetype", "regex"] if env["tools"] and not env.module_check_dependencies("tools", editor_module_list): print( "Build option 'module_" |