IAP GITLAB

Skip to content
Snippets Groups Projects
Commit c088aa7c authored by Jean-Marco Alameddine's avatar Jean-Marco Alameddine
Browse files

Set compiler.libcxx to libstdc++11 for all systems but MacOS

parent ddc93efb
No related branches found
No related tags found
No related merge requests found
......@@ -106,10 +106,14 @@ include (conan) # self-provided in 'cmake' directory
#
# download and build all dependencies
message (STATUS "Installing dependencies from Conan (this may take some time)...")
if(NOT APPLE)
set(SETTINGS compiler.libcxx=libstdc++11) # not available on MacOS
endif()
conan_cmake_run (CONANFILE conanfile.txt
BASIC_SETUP CMAKE_TARGETS
BUILD missing
BUILD_TYPE "Release")
BUILD_TYPE "Release"
SETTINGS ${SETTINGS})
#
# add cnpy temporarily. As long as SaveBoostHistogram does not save to parquet directly
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment