diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-08-30 20:28:37 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-09-15 12:08:53 -0500 |
commit | 4fc639916c096ebe9bf52907c35c9e4bc8ef36b9 (patch) | |
tree | 173be68d293edbef90499839e99c54d7709d96d2 /SConstruct | |
parent | 520462e98c15ef583f24ea39fb874a388d377b1c (diff) |
Allow disabling the RegEx module in the editor
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 8feb9e61bb..b6c98eea77 100644 --- a/SConstruct +++ b/SConstruct @@ -683,7 +683,7 @@ if selected_platform in platform_list: if env["minizip"]: env.Append(CPPDEFINES=["MINIZIP_ENABLED"]) - editor_module_list = ["freetype", "regex"] + editor_module_list = ["freetype"] if env["tools"] and not env.module_check_dependencies("tools", editor_module_list): print( "Build option 'module_" |