Browse Source
Merge pull request #2450 from lioncash/warn-level
CMakeLists: Explicitly specify -Wall for the non-MSVC case
pull/15/merge
Mat M
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
src/CMakeLists.txt
|
|
|
@ -49,7 +49,10 @@ if (MSVC) |
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG /MANIFEST:NO" CACHE STRING "" FORCE) |
|
|
|
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE) |
|
|
|
else() |
|
|
|
add_compile_options("-Wno-attributes") |
|
|
|
add_compile_options( |
|
|
|
-Wall |
|
|
|
-Wno-attributes |
|
|
|
) |
|
|
|
|
|
|
|
if (APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang) |
|
|
|
add_compile_options("-stdlib=libc++") |
|
|
|
|