forked from grantrostig/cpp_by_example
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcpp_constexpr.pro
More file actions
87 lines (76 loc) · 2.85 KB
/
cpp_constexpr.pro
File metadata and controls
87 lines (76 loc) · 2.85 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Copyright (c) Grant Rostig, grantrostig.com, Boost 1.0 license
# BRIEF version versus LONG
# Either these three or the next 2, for app or lib, respectively.
TEMPLATE = app # comment out these 3,
SOURCES = main.cpp # we add other SOURCES below.
CONFIG += console
#TEMPLATE = lib # OR comment out these 2.
#CONFIG += staticlib
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += \ #https://gcc.gnu.org/onlinedocs/gcc-13.2.0/gcc/
-fconcepts \
#-fmodules-ts \
#-std=c++26 \
-std=c++23 \
-g3 \
-O0 \
-Wall \ # https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html \
-Wextra \
LIBS += \ # https://gcc.gnu.org/onlinedocs/gcc-13.2.0/gcc/Link-Options.html
-lstdc++exp \
HEADERS += \
global_entities.hpp \
ut.hpp \
#$$PWD/..h \ # probably wrong
SOURCES += \
# NOT HERE main.cpp \ # declared above for app, and not declared above for lib. Therefore do NOT declare it here in either case.
global_entities.cpp \
HEADERS += \
#boost_headers.hpp \
#catch_amalgamated.hpp \
#cpp_headers.hpp \
#gnuplot-iostream.hpp \
#iostreams.hpp \
#math_grostig.hpp \
#ostream_joiner_gr.hpp \
#random_toolkit.hpp \
#ut.cppm \
SOURCES += \
#boost_headers.cpp \
#catch_amalgamated.cpp \
#cpp_headers.cpp \
#gnuplot-iostream.cpp \
#iostreams.cpp \
#math_grostig.cpp \
#ostream_joiner_gr.cpp \
#random_toolkit.cpp \
#ut.cppm \
DISTFILES += \
CMakeLists.grostig.txt \
Makefile.txt \
README.txt \
example.pro.txt \
clang-format_grostig_qt.xml \
grostig_tools_LONG.pro.txt \
grostig_tools_BRIEF.pro.txt \
DISTFILES += \
boost_headers.hpp.txt \
boost_headers.cpp.txt \
catch_amalgamated.hpp.txt \
catch_amalgamated.cpp.txt \
cpp_headers.hpp.txt \
cpp_headers.cpp.txt \
gnuplot-iostream.hpp.txt \
gnuplot-iostream.cpp.txt \
iostreams.hpp.txt \
iostreams.cpp.txt \
math_grostig.hpp.txt \
math_grostig.cpp.txt \
ostream_joiner_gr.hpp.txt \
ostream_joiner_gr.cpp.txt \
random_toolkit.hpp.txt \
random_toolkit.cpp.txt \
ut.hpp.txt \
ut.cppm.txt \
####################################################