enable all warnings when building vst3 and for the web

This commit is contained in:
Stefano D'Angelo 2023-04-26 01:56:40 +02:00
parent e6466ce0c8
commit 7354f40a14
2 changed files with 7 additions and 2 deletions

View File

@ -12,7 +12,11 @@ CXXFLAGS := \
-I${COMMON_DIR} \ -I${COMMON_DIR} \
-I${ROOT_DIR}/../../../include \ -I${ROOT_DIR}/../../../include \
-I${VST3_SDK_DIR} \ -I${VST3_SDK_DIR} \
-O3 -O3 \
-Wall \
-Wextra \
-Wpedantic \
-std=c++20
LDFLAGS := \ LDFLAGS := \
-shared -shared

View File

@ -8,7 +8,8 @@ CFLAGS := \
-fvisibility=hidden \ -fvisibility=hidden \
-Ofast \ -Ofast \
-Wall \ -Wall \
-Wunused-parameter -Wextra \
-Wpedantic
LDFLAGS := \ LDFLAGS := \
-Wl,--allow-undefined \ -Wl,--allow-undefined \
-Wl,--no-entry \ -Wl,--no-entry \