From 8a6908c8989322b6d33ee5e3b757c89c582b5081 Mon Sep 17 00:00:00 2001 From: Paul Bowen-Huggett Date: Wed, 6 Sep 2023 11:50:36 +0200 Subject: [PATCH] Don't force use of libc++. --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f5dd7a..b3746b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,8 @@ cmake_minimum_required (VERSION 3.10) project (spsc_queue CXX) - option (COVERAGE_ENABLED "Capture coverage data") - function (configure_target target) set_target_properties (${target} PROPERTIES CXX_STANDARD 17 @@ -37,7 +35,6 @@ function (configure_target target) -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-padded - -stdlib=libc++ ) if (COVERAGE_ENABLED) target_compile_options (${target} PRIVATE -fprofile-instr-generate -fcoverage-mapping)