You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by ja...@apache.org on 2015/02/13 09:52:19 UTC

[07/38] incubator-corinthia git commit: Change location of external extractions

Change location of external extractions

The extract_downloads.bat script used folders within external/download
for include, lib, and bin.  The simplest correction was to change
CMakeLists.txt to agree rather than make many more fixes to
extract_downloads.bat.


Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/f058c02a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/f058c02a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/f058c02a

Branch: refs/heads/experimentZip
Commit: f058c02a0100dc16f868745594788e96e1c84282
Parents: 2d96374
Author: Dennis Hamilton <or...@apache.org>
Authored: Fri Jan 9 14:43:30 2015 -0800
Committer: Dennis Hamilton <or...@apache.org>
Committed: Fri Jan 9 14:43:30 2015 -0800

----------------------------------------------------------------------
 CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f058c02a/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9d1d41a..7eb3585 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -42,9 +42,9 @@ endif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
 
 if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
     set(INCLUDE_DIRS
-        ${PROJECT_SOURCE_DIR}/external/include)
+	${PROJECT_SOURCE_DIR}/external/download/include)
     set(LIB_DIRS
-        ${PROJECT_SOURCE_DIR}/external/lib)
+	${PROJECT_SOURCE_DIR}/external/download/lib)
     set(LIBS ${LIBS} libxml2 zdll iconv SDL2 SDL2_image)
     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4090 /wd4996")
 endif(${CMAKE_SYSTEM_NAME} MATCHES "Windows")