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-02-21 15:18:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-21 15:18:34 +0300
commitc14aca0e95cee8262d2680364859983eca729c67 (patch)
tree66f42a4b7af172ab5e98e0ce137f590c0d8b900f
parentd9563f5e2be5cf47c886954c6e58b64b4d8deab3 (diff)
add includes to cmake files
-rw-r--r--intern/guardedalloc/CMakeLists.txt2
-rw-r--r--intern/mikktspace/CMakeLists.txt2
-rw-r--r--source/blender/makesrna/intern/CMakeLists.txt1
3 files changed, 4 insertions, 1 deletions
diff --git a/intern/guardedalloc/CMakeLists.txt b/intern/guardedalloc/CMakeLists.txt
index eb101eee102..4a534d94eb8 100644
--- a/intern/guardedalloc/CMakeLists.txt
+++ b/intern/guardedalloc/CMakeLists.txt
@@ -29,8 +29,8 @@ set(INC .)
set(SRC
./intern/mallocn.c
- BLO_sys_types.h
MEM_guardedalloc.h
+ MEM_sys_types.h
)
if(WIN32 AND NOT UNIX)
diff --git a/intern/mikktspace/CMakeLists.txt b/intern/mikktspace/CMakeLists.txt
index 0be0f712395..f84a499206c 100644
--- a/intern/mikktspace/CMakeLists.txt
+++ b/intern/mikktspace/CMakeLists.txt
@@ -30,6 +30,8 @@ set(INC
set(SRC
mikktspace.c
+
+ mikktspace.h
)
blender_add_lib(bf_intern_mikktspace "${SRC}" "${INC}")
diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt
index 3a6496fab60..c1e8b1ee11b 100644
--- a/source/blender/makesrna/intern/CMakeLists.txt
+++ b/source/blender/makesrna/intern/CMakeLists.txt
@@ -41,6 +41,7 @@ set_source_files_properties(GENSRC PROPERTIES GENERATED true)
set(SRC_RNA_INC
../RNA_access.h
../RNA_define.h
+ ../RNA_documentation.h
../RNA_enum_types.h
../RNA_types.h
)