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>2011-11-13 19:17:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-13 19:17:24 +0400
commit8b323417751ecc051e445a8e69188cf00afa3c4e (patch)
tree6e0d2af2f49f648d821da828fc08bd3943ce1cf2 /source/blender/blenkernel/CMakeLists.txt
parentea38cb2e5eb84fbc6e15e64c69589c691a5d240a (diff)
ensure that the path and directory are joined correctly for ocean cache (assumed path ended with a '/')
Diffstat (limited to 'source/blender/blenkernel/CMakeLists.txt')
-rw-r--r--source/blender/blenkernel/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt
index fd98da949ca..b4745669ff0 100644
--- a/source/blender/blenkernel/CMakeLists.txt
+++ b/source/blender/blenkernel/CMakeLists.txt
@@ -385,7 +385,9 @@ if(WITH_LIBMV)
endif()
if(WITH_FFTW3)
- list(APPEND INC_SYS ${FFTW3_INCLUDE_DIRS})
+ list(APPEND INC_SYS
+ ${FFTW3_INCLUDE_DIRS}
+ )
add_definitions(-DFFTW3=1)
endif()