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>2015-05-17 09:09:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-17 09:09:15 +0300
commit6ba128129d871b656623ce231fd7cba7a4d7af1d (patch)
tree9e78b33c468c2378210727317ba4aaf4a601a22a /source/blender/depsgraph
parent60f60ed49641fbe1950460b89fcd2b5c494f1437 (diff)
CMake: correct file listing
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/CMakeLists.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/depsgraph/CMakeLists.txt b/source/blender/depsgraph/CMakeLists.txt
index 014bcb40163..dcdb14d0ba0 100644
--- a/source/blender/depsgraph/CMakeLists.txt
+++ b/source/blender/depsgraph/CMakeLists.txt
@@ -25,8 +25,8 @@
set(INC
.
- ./intern
- ./util
+ intern
+ util
../blenkernel
../blenlib
../bmesh
@@ -109,7 +109,9 @@ if(WITH_LEGACY_DEPSGRAPH)
endif()
if(WITH_BOOST)
- list(APPEND INC_SYS ${BOOST_INCLUDE_DIR})
+ list(APPEND INC_SYS
+ ${BOOST_INCLUDE_DIR}
+ )
add_definitions(-DHAVE_BOOST_FUNCTION_BINDINGS)
endif()