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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-09-07 05:13:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-07 05:13:10 +0400
commit2406ebe1a47c388df8b1ea003d7f768df947460f (patch)
treea1bdf0b221d4861e53aaf3e70578d1fd738f9bda /intern/smoke/CMakeLists.txt
parente0aca888deeeeeba86959ed974619140667db1fb (diff)
- added back zlib include (needed for win32).
- use list append in more places. - remove non existing include dir.
Diffstat (limited to 'intern/smoke/CMakeLists.txt')
-rw-r--r--intern/smoke/CMakeLists.txt14
1 files changed, 10 insertions, 4 deletions
diff --git a/intern/smoke/CMakeLists.txt b/intern/smoke/CMakeLists.txt
index f099efd2bb8..6c844cbd232 100644
--- a/intern/smoke/CMakeLists.txt
+++ b/intern/smoke/CMakeLists.txt
@@ -24,7 +24,14 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(INC ${PNG_INC} ${ZLIB_INC} intern ../../extern/bullet2/src ../memutil ../guardealloc)
+SET(INC
+ intern
+ ../memutil
+ ../guardealloc
+ ../../extern/bullet2/src
+ ${PNG_INC}
+ ${ZLIB_INC}
+)
FILE(GLOB SRC intern/*.cpp)
@@ -34,9 +41,8 @@ ENDIF(WITH_OPENMP)
IF(WITH_FFTW3)
ADD_DEFINITIONS(-DFFTW3=1)
- SET(INC ${INC} ${FFTW3_INC})
+ LIST(APPEND INC ${FFTW3_INC})
ENDIF(WITH_FFTW3)
-
BLENDERLIB(bf_intern_smoke "${SRC}" "${INC}")
-#, libtype='blender', priority = 0 )
+