diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-10-15 18:58:31 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-10-15 18:58:31 +0200 |
commit | 845afb519161b61ccbc0d007679c0ee0e2f969ae (patch) | |
tree | 01dc1d8272de06fdfa69156ace2aa15e6c121f90 /src | |
parent | Merge pull request #2610 (diff) | |
parent | cmake: build tests last (diff) | |
download | monero-845afb519161b61ccbc0d007679c0ee0e2f969ae.tar.xz |
Merge pull request #2613
2051f89f cmake: build tests last (redfish)
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 57ff28bfc..6fb08b645 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -34,6 +34,11 @@ if (WIN32 OR STATIC) add_definitions(-DMINIUPNP_STATICLIB) endif () +# warnings are cleared only for GCC on Linux +if (NOT (MINGW OR APPLE OR FREEBSD OR OPENBSD OR DRAGONFLY)) + add_compile_options("${WARNINGS_AS_ERRORS_FLAG}") # applies only to targets that follow +endif() + function (monero_private_headers group) source_group("${group}\\Private" FILES |