From da41bb49361133474c5118a3b87473e07a872268 Mon Sep 17 00:00:00 2001 From: Rob Patro Date: Wed, 23 Nov 2022 12:52:56 -0500 Subject: [PATCH] update with conda variables --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5426da0e..01f42991 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -100,7 +100,7 @@ target_link_libraries(cfcore_static PRIVATE ${CMAKE_THREAD_LIBS_INIT}) # when building on conda on OSX with clang, we apparently need to explicitly # link the filesystem library, see (https://github.com/bioconda/bioconda-recipes/pull/37269/files) if("$ENV{CF_INSTALL}" STREQUAL "conda" AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") - target_link_libraries(cfcore_static PRIVATE c++fs) + target_link_libraries(cfcore_static PRIVATE c++experimental) endif() # Link the executable to the required libraries.