From b705c9cc1671f26a8d878c4ba99e57c550e1bf3c Mon Sep 17 00:00:00 2001 From: Glyn Matthews Date: Thu, 28 Feb 2019 10:59:26 +0100 Subject: [PATCH] Added command line option to disable libc++ when using clang (#130) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f863cd6..42386bcc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,6 +12,7 @@ option(Uri_BUILD_DOCS "Build the URI documentation." ON) option(Uri_FULL_WARNINGS "Build the library with all warnings turned on." ON) option(Uri_WARNINGS_AS_ERRORS "Treat warnings as errors." ON) option(Uri_USE_STATIC_CRT "Use static C Runtime library (/MT or MTd)." ON) +option(Uri_DISABLE_LIBCXX "Disable libc++ (only applies if compiler is clang)" OFF) find_package(Threads REQUIRED)