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.
This commit is contained in:
David Capello 2015-06-12 11:27:47 -03:00
parent dfa5e561da
commit 0d09ca6f20
2 changed files with 2 additions and 2 deletions

View File

@ -44,6 +44,7 @@ set(aseprite_libraries
ui-lib
she
gfx-lib
net-lib
base-lib)
# Directories where .h files can be found

View File

@ -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)