Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-09-18 07:55:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-18 07:55:56 +0400
commitdea59cc5eb6562272df361c062f7ed226c2b7a36 (patch)
tree6186fed79ff36667e4b295d9e62621d830635540 /extern
parentd5e11d409f470934eb77da194f1ee43df0ff7ac2 (diff)
warning fixes and minor cmake changes.
Diffstat (limited to 'extern')
-rw-r--r--extern/binreloc/CMakeLists.txt11
-rw-r--r--extern/glew/CMakeLists.txt4
-rw-r--r--extern/lzo/CMakeLists.txt6
3 files changed, 13 insertions, 8 deletions
diff --git a/extern/binreloc/CMakeLists.txt b/extern/binreloc/CMakeLists.txt
index c684a7602e1..cc27b82ede1 100644
--- a/extern/binreloc/CMakeLists.txt
+++ b/extern/binreloc/CMakeLists.txt
@@ -18,8 +18,15 @@
# All rights reserved.
#
-SET(INC ./include )
+SET(SRC
+ binreloc.c
+)
+
+SET(INC
+ ./include
+)
+
ADD_DEFINITIONS(-DENABLE_BINRELOC)
-FILE(GLOB SRC *.c)
+
BLENDERLIB(extern_binreloc "${SRC}" "${INC}")
diff --git a/extern/glew/CMakeLists.txt b/extern/glew/CMakeLists.txt
index b22c7caaaae..ea3c13da611 100644
--- a/extern/glew/CMakeLists.txt
+++ b/extern/glew/CMakeLists.txt
@@ -24,7 +24,9 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC include src)
+SET(INC
+ ./include
+)
IF(UNIX)
LIST(APPEND INC ${X11_X11_INCLUDE_PATH})
diff --git a/extern/lzo/CMakeLists.txt b/extern/lzo/CMakeLists.txt
index 8bc887c923e..1563300d509 100644
--- a/extern/lzo/CMakeLists.txt
+++ b/extern/lzo/CMakeLists.txt
@@ -25,10 +25,6 @@
# ***** END GPL LICENSE BLOCK *****
SET(INC include)
-
-FILE(GLOB SRC minilzo/*.c)
-
-
+SET(SRC minilzo/minilzo.c)
BLENDERLIB(extern_minilzo "${SRC}" "${INC}")
-#, libtype='blender', priority = 0 )