[aseprite] 111/196: Replaced LIBCURL_* to CURL_* in CMakeList

Tobias Hansen thansen at moszumanska.debian.org
Wed Apr 20 18:50:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository aseprite.

commit 1a682f82eb7047898b59775bdcf9dcb747498de7
Author: Azamat H. Hackimov <azamat.hackimov at gmail.com>
Date:   Sat Mar 26 16:01:45 2016 +0500

    Replaced LIBCURL_* to CURL_* in CMakeList
    
    According to find_package() variables.
---
 CMakeLists.txt         | 6 +++---
 src/net/CMakeLists.txt | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5fb6891..c0c5433 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -253,10 +253,10 @@ endif()
 if(USE_SHARED_CURL)
   find_package(CURL REQUIRED)
 else()
-  set(LIBCURL_LIBRARIES libcurl)
-  set(LIBCURL_INCLUDE_DIRS ${CURL_DIR}/include)
+  set(CURL_LIBRARIES libcurl)
+  set(CURL_INCLUDE_DIRS ${CURL_DIR}/include)
 endif()
-include_directories(${LIBCURL_INCLUDE_DIRS})
+include_directories(${CURL_INCLUDE_DIRS})
 
 # simpleini
 include_directories(${SIMPLEINI_DIR})
diff --git a/src/net/CMakeLists.txt b/src/net/CMakeLists.txt
index 7ed6a27..4779643 100644
--- a/src/net/CMakeLists.txt
+++ b/src/net/CMakeLists.txt
@@ -7,4 +7,4 @@ add_library(net-lib
   http_response.cpp)
 
 target_link_libraries(net-lib
-  ${LIBCURL_LIBRARIES})
+  ${CURL_LIBRARIES})

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git



More information about the Pkg-games-commits mailing list