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-09-06 03:46:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-06 03:46:08 +0400
commitbf5a6531a61638b74b9e80e055e00c2b97483fdf (patch)
tree157b7c11f74e52d6a3fea841d1e6cde82703b48d /intern/smoke/CMakeLists.txt
parent0991bed4139e4a77ba81514ad1dfb6a852a41fa5 (diff)
replace define '#if FFTW3==1' --> '#ifdef WITH_FFTW3'
Diffstat (limited to 'intern/smoke/CMakeLists.txt')
-rw-r--r--intern/smoke/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/smoke/CMakeLists.txt b/intern/smoke/CMakeLists.txt
index 094d398a83c..228ff6ec389 100644
--- a/intern/smoke/CMakeLists.txt
+++ b/intern/smoke/CMakeLists.txt
@@ -88,7 +88,7 @@ if(WITH_OPENMP)
endif()
if(WITH_FFTW3)
- add_definitions(-DFFTW3=1)
+ add_definitions(-DWITH_FFTW3)
list(APPEND INC
${FFTW3_INCLUDE_DIRS}
)