diff options
| author | Rémi Verschelde | 2016-11-03 00:23:55 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2016-11-03 07:45:08 +0100 |
| commit | cc95d4448c6005c3007c8460f09b8be1595eb3c0 (patch) | |
| tree | 91d5e77f5ee1eb3883b1d03e683286bb12948c31 /drivers/png | |
| parent | cc54189911e47ef1d432521df7d976b818123b1e (diff) | |
| download | godot-cc95d4448c6005c3007c8460f09b8be1595eb3c0.tar.gz godot-cc95d4448c6005c3007c8460f09b8be1595eb3c0.tar.zst godot-cc95d4448c6005c3007c8460f09b8be1595eb3c0.zip | |
scons: Reorder options for clarity
Also prefix all thirdparty-related toggles with `builtin`.
Diffstat (limited to 'drivers/png')
| -rw-r--r-- | drivers/png/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/png/SCsub b/drivers/png/SCsub index aedde3e2b..6684e36b2 100644 --- a/drivers/png/SCsub +++ b/drivers/png/SCsub @@ -5,7 +5,7 @@ Import('env') env_png = env.Clone() # Thirdparty source files -if (env["libpng"] == "builtin"): +if (env['builtin_libpng'] != 'no'): thirdparty_dir = "#thirdparty/libpng/" thirdparty_sources = [ "png.c", |
