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-08-02 09:52:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-02 09:52:27 +0400
commitfcd7d2b486f2435907423188ffdfe2840c966b0b (patch)
tree58414c67c39fea1e654ce2380fbbb2488716b0b5 /build_files/cmake/macros.cmake
parent8f3016098d726ec82b7f778d1e0a0d58f3da74cb (diff)
NDOF related edits
- fix for building without NDOF on X11 - quiet some warnings
Diffstat (limited to 'build_files/cmake/macros.cmake')
-rw-r--r--build_files/cmake/macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 3de9db6dac9..c53f52b7bae 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -193,7 +193,7 @@ macro(SETUP_LIBDIRS)
if(WITH_MEM_JEMALLOC)
link_directories(${JEMALLOC_LIBPATH})
endif()
- if(WITH_NDOF)
+ if(WITH_INPUT_NDOF)
link_directories(${NDOF_LIBPATH})
endif()
@@ -317,7 +317,7 @@ macro(setup_liblinks
if(WITH_MEM_JEMALLOC)
target_link_libraries(${target} ${JEMALLOC_LIBRARIES})
endif()
- if(WITH_NDOF)
+ if(WITH_INPUT_NDOF)
target_link_libraries(${target} ${NDOF_LIBRARY})
endif()