1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-05-12 12:00:14 +00:00

OS X clang standard set to C++11

This was done to support C++11 like initializations as used in libqb. 

Signed-off-by: Christoph Hahn <chrhhn@gmail.com>
This commit is contained in:
Christoph Hahn 2023-01-01 21:41:32 +01:00 committed by GitHub
parent ffd2ad656d
commit a9e2f4d03d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,2 @@
cd "$(dirname "$0")"
clang++ -c -w -Wall ../../../libqb.mm -D DEPENDENCY_LOADFONT -o libqb_setup.o
clang++ -c -std=c++11 -w -Wall ../../../libqb.mm -D DEPENDENCY_LOADFONT -o libqb_setup.o