forked from grantrostig/cpp_by_example
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcpp_static.pro
More file actions
37 lines (33 loc) · 812 Bytes
/
cpp_static.pro
File metadata and controls
37 lines (33 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
TEMPLATE = app
CONFIG += console
CONFIG += c++latest
CONFIG += warn_on
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += \
-std=gnu++23 \
-g3 \
-O0 \
-Wall \ # https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
-Wextra \
-Wno-comment \
-Wno-reorder \
-Wno-unused-function \
-Wno-unused-parameter \
-Wno-unused-variable \
# -Wno-uninitialized \
HEADERS += \
cpp_static_example.hpp \
global_entities.hpp \
linkage.hpp \
scope.hpp \
scope_test.hpp \
storage_duration.hpp \
SOURCES += \
cpp_static_example.cpp \
global_entities.cpp \
linkage.cpp \
main.cpp \
scope.cpp \
scope_test.cpp \
storage_duration.cpp \