From d190b8885434e9f29484ad9b6ca4a812fa361a80 Mon Sep 17 00:00:00 2001 From: Fabio Arnold Date: Sun, 21 Feb 2016 01:03:10 +0100 Subject: [PATCH] OS X: fix clang compile error over non-existent simpleini lib --- CMakeLists.txt | 1 - src/cfg/CMakeLists.txt | 3 --- 2 files changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e561c52c1..8d3246c5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -270,7 +270,6 @@ endif() include_directories(${LIBCURL_INCLUDE_DIR}) # simpleini -set(SIMPLEINI_LIBRARY simpleini) include_directories(${SIMPLEINI_DIR}) ###################################################################### diff --git a/src/cfg/CMakeLists.txt b/src/cfg/CMakeLists.txt index f93f81c75..612f65128 100644 --- a/src/cfg/CMakeLists.txt +++ b/src/cfg/CMakeLists.txt @@ -2,6 +2,3 @@ # Copyright (c) 2014, 2015 David Capello add_library(cfg-lib cfg.cpp) - -target_link_libraries(cfg-lib - ${SIMPLEINI_LIBRARY})