From 3fd62653f61f91628802c60079b80a3f1b217bc6 Mon Sep 17 00:00:00 2001 From: Marco Poletti Date: Sun, 6 Aug 2017 17:22:45 +0100 Subject: [PATCH] No longer link against libsupc++. It's no longer necessary, and it causes compilation errors when building binary packages for Fedora. --- src/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2c4eda10..66bf79ff 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -24,8 +24,3 @@ endif() install(TARGETS fruit ARCHIVE DESTINATION "${INSTALL_LIBRARY_DIR}" LIBRARY DESTINATION "${INSTALL_LIBRARY_DIR}") - -if("${UNIX}" AND NOT "${APPLE}") - target_link_libraries(fruit supc++) -endif() -