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
parent60f60ed49641fbe1950460b89fcd2b5c494f1437 (diff)
CMake: correct file listing
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenlib/CMakeLists.txt1
-rw-r--r--source/blender/depsgraph/CMakeLists.txt8
-rw-r--r--source/blender/editors/util/CMakeLists.txt1
-rw-r--r--source/blender/makesdna/intern/CMakeLists.txt2
4 files changed, 8 insertions, 4 deletions
diff --git a/source/blender/blenlib/CMakeLists.txt b/source/blender/blenlib/CMakeLists.txt
index 797bdaa2ae4..e39202d35fd 100644
--- a/source/blender/blenlib/CMakeLists.txt
+++ b/source/blender/blenlib/CMakeLists.txt
@@ -155,6 +155,7 @@ set(SRC
BLI_listbase.h
BLI_math.h
BLI_math_base.h
+ BLI_math_bits.h
BLI_math_color.h
BLI_math_color_blend.h
BLI_math_geom.h
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()
diff --git a/source/blender/editors/util/CMakeLists.txt b/source/blender/editors/util/CMakeLists.txt
index d1495d85e64..47894e1bc1f 100644
--- a/source/blender/editors/util/CMakeLists.txt
+++ b/source/blender/editors/util/CMakeLists.txt
@@ -70,6 +70,7 @@ set(SRC
../include/ED_node.h
../include/ED_numinput.h
../include/ED_object.h
+ ../include/ED_outliner.h
../include/ED_paint.h
../include/ED_particle.h
../include/ED_physics.h
diff --git a/source/blender/makesdna/intern/CMakeLists.txt b/source/blender/makesdna/intern/CMakeLists.txt
index 08d2f93866a..be097c0e51e 100644
--- a/source/blender/makesdna/intern/CMakeLists.txt
+++ b/source/blender/makesdna/intern/CMakeLists.txt
@@ -74,7 +74,7 @@ set(INC_SYS
set(SRC
dna_genfile.c
- dna.c
+ ${CMAKE_CURRENT_BINARY_DIR}/dna.c
${SRC_DNA_INC}
)