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-20 12:48:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-20 12:48:48 +0400
commit84d06f252e1637e76abd59478183c7afd4a80a9e (patch)
treebbcc4c1cc1f2c3d094198e9c5c411ee9f733a243 /intern/smoke
parente1de1214a44c23ae0a7826ea6867b5da6dc58d60 (diff)
tag & comment unused vars with /* UNUSED */
Diffstat (limited to 'intern/smoke')
-rw-r--r--intern/smoke/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/intern/smoke/CMakeLists.txt b/intern/smoke/CMakeLists.txt
index 228ff6ec389..6e1d3eb0ab4 100644
--- a/intern/smoke/CMakeLists.txt
+++ b/intern/smoke/CMakeLists.txt
@@ -83,8 +83,13 @@ set(SRC
intern/tnt/tnt_version.h
)
+# quiet -Wundef
+add_definitions(-DDDF_DEBUG=0)
+
if(WITH_OPENMP)
add_definitions(-DPARALLEL=1)
+else()
+ add_definitions(-DPARALLEL=0)
endif()
if(WITH_FFTW3)