diff options
author | Jeffrey Pfau <jeffrey@endrift.com> | 2016-11-09 23:05:46 -0800 |
---|---|---|
committer | Jeffrey Pfau <jeffrey@endrift.com> | 2016-12-13 09:41:55 -0800 |
commit | 07ab936f1246ae91c83c70b2d80b695c6883f28a (patch) | |
tree | a011671d656d719e561fc38d4cea4fc308b94937 | |
parent | da995a4377ba5194ca9759c6b7f62adf081f25a3 (diff) |
CMakeLists: Autodetect clang and only then use libc++
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c02c968405..2c00690c02 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,8 +183,10 @@ IF (APPLE) FIND_LIBRARY(COCOA_LIBRARY Cocoa) # Umbrella framework for everything GUI-related set(PLATFORM_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY} ${COREVIDEO_LIBRARY}) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") + if (CMAKE_CXX_COMPILER_ID STREQUAL Clang) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") + endif() ELSEIF (WIN32) # WSAPoll and SHGetKnownFolderPath (AppData/Roaming) didn't exist before WinNT 6.x (Vista) add_definitions(-D_WIN32_WINNT=0x0600 -DWINVER=0x0600) |