From 0d09ca6f20c43ff50feb806e6e8144a5a4b3c695 Mon Sep 17 00:00:00 2001 From: David Capello Date: Fri, 12 Jun 2015 11:27:47 -0300 Subject: [PATCH] Add net-lib to aseprite libraries (fix #696) Net library must be included in link process whatever ENABLE_UPDATER value is, because we load RSS news with net-lib anyway. --- src/CMakeLists.txt | 1 + src/updater/CMakeLists.txt | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6b0815f11..f8639d092 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,6 +44,7 @@ set(aseprite_libraries ui-lib she gfx-lib + net-lib base-lib) # Directories where .h files can be found diff --git a/src/updater/CMakeLists.txt b/src/updater/CMakeLists.txt index 829973e49..23839d463 100644 --- a/src/updater/CMakeLists.txt +++ b/src/updater/CMakeLists.txt @@ -1,5 +1,5 @@ # ASEPRITE -# Copyright (C) 2001-2013 David Capello +# Copyright (C) 2001-2015 David Capello set(UPDATER_LIB_SOURCES check_update.cpp @@ -12,4 +12,3 @@ elseif(APPLE) endif() add_library(updater-lib ${UPDATER_LIB_SOURCES}) -target_link_libraries(updater-lib net-lib)