diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2026-02-03 21:54:09 +0100 |
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2026-02-03 21:54:09 +0100 |
| commit | be2184d36d4492e43fbed1f6581fa26636d803ac (patch) | |
| tree | 4eea32bd931a5be61fa7b370def8817d6a4bcc35 /ctor.cc | |
| parent | f66ab53b9380a5367e24727df620d6620ab031f7 (diff) | |
Remove ctor::flags construct and apply tool specific flags (ie. ctor::cxx_flags, ...) directly in build config. Loosen generator requirements, to allow for lambda's directly.new_syntax
Diffstat (limited to 'ctor.cc')
| -rw-r--r-- | ctor.cc | 24 |
1 files changed, 11 insertions, 13 deletions
@@ -32,19 +32,17 @@ ctor::build_configurations ctorConfigs(const ctor::settings& settings) "src/util.cc", "src/unittest.cc", }, - ctor::flags{ - ctor::cxx_flags{ - "-std=c++20", - "-O3", - "-g", - "-Wall", - "-Wextra", - "-Wshadow", - "-Wconversion", -// "-Wnrvo", - "-Isrc", - "-fexceptions", - }, + ctor::cxx_flags{ + "-std=c++20", + "-O3", + "-g", + "-Wall", + "-Wextra", + "-Wshadow", + "-Wconversion", +// "-Wnrvo", + "-Isrc", + "-fexceptions", }, } }; |
