mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
update libpng, the repo now requires a vcpkg setup for integrating but skipping the install step should allow it to work for windows an linux, mac might need more
12 lines
495 B
Plaintext
12 lines
495 B
Plaintext
# Disable the "expressions don't expand in single quotes, use double quotes"
|
|
# advice. We need the regular expressions to remain uninterpolated.
|
|
disable=SC2016
|
|
|
|
# Disable the "variable appears unused" warning caused by the use of getopts
|
|
# with an obligatory (but unused) variable name in the main function.
|
|
disable=SC2034
|
|
|
|
# Disable all the "quote to prevent globbing or word splitting" advice.
|
|
# We need word splitting for well-known variables like MAKEFLAGS and CFLAGS.
|
|
disable=SC2086,SC2206
|