mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
Minor improvement CMakeLists to use generators
This commit is contained in:
parent
90f348d26a
commit
8afe18f148
@ -25,12 +25,10 @@ endfunction()
|
|||||||
|
|
||||||
# Turn on warnings on the given target
|
# Turn on warnings on the given target
|
||||||
function(spdlog_enable_warnings target_name)
|
function(spdlog_enable_warnings target_name)
|
||||||
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang|AppleClang")
|
target_compile_options(${target_name} PRIVATE
|
||||||
target_compile_options(${target_name} PRIVATE -Wall -Wextra -Wconversion -pedantic -Wfatal-errors)
|
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
|
||||||
endif()
|
-Wall -Wextra -Wconversion -pedantic -Wfatal-errors>
|
||||||
if (CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
$<$<CXX_COMPILER_ID:MSVC>:/W4 /WX>)
|
||||||
target_compile_options(${target_name} PRIVATE /W4 /WX )
|
|
||||||
endif()
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user