mirror of https://github.com/procxx/kepka.git
Fix warning against overriding '/std:c++latest' with '/std:c++17'
This warning is fixed via updating to CMake 3.10 that learnt to set /std:c++17 for MSVS2017.
This commit is contained in:
parent
19e8c86e4b
commit
bf0dc8e64e
|
@ -1,4 +1,4 @@
|
|||
cmake_minimum_required(VERSION 3.9)
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(telegram-desktop)
|
||||
|
||||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cotire/CMake;${PROJECT_SOURCE_DIR}/modules/")
|
||||
|
|
|
@ -641,14 +641,6 @@ if(NOT WIN32)
|
|||
set_flag_if_supported(Telegram WNCE -Wno-c++1z-extensions)
|
||||
endif()
|
||||
|
||||
# Enable C++17 support for msvc (@todo this should be done in cmake - see ver 3.10 or above)
|
||||
if(WIN32)
|
||||
target_compile_options(Telegram PRIVATE
|
||||
/std:c++latest
|
||||
/EHsc # Catch C++ exceptions only, extern C functions never throw a C++ exception.
|
||||
)
|
||||
endif()
|
||||
|
||||
target_compile_definitions(Telegram PRIVATE ${FFMPEG_DEFINITIONS})
|
||||
|
||||
target_link_libraries(Telegram
|
||||
|
|
Loading…
Reference in New Issue