From 2406ebe1a47c388df8b1ea003d7f768df947460f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Sep 2010 01:13:10 +0000 Subject: - added back zlib include (needed for win32). - use list append in more places. - remove non existing include dir. --- intern/smoke/CMakeLists.txt | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'intern/smoke') 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 ) + -- cgit v1.2.3