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
path: root/source
diff options
context:
space:
mode:
authorXiao Xiangquan <xiaoxiangquan@gmail.com>2011-08-13 18:43:52 +0400
committerXiao Xiangquan <xiaoxiangquan@gmail.com>2011-08-13 18:43:52 +0400
commit5293b4f498c3b3a851cc69850a4e131b0788089c (patch)
treeed171abec126919a0aef0d0ab8e320c59b8f5692 /source
parent3a8c7be9e4740c5627c9e49eb50c3687a959d7e6 (diff)
some small fix
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenfont/BLF_api.h1
-rw-r--r--source/creator/CMakeLists.txt6
2 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h
index 837ca814fbf..6f6003fa670 100644
--- a/source/blender/blenfont/BLF_api.h
+++ b/source/blender/blenfont/BLF_api.h
@@ -34,6 +34,7 @@
#ifndef BLF_API_H
#define BLF_API_H
+#include <stdlib.h>
struct rctf;
int BLF_init(int points, int dpi);
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index a85cb36d379..43f012b9543 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -458,7 +458,7 @@ elseif(WIN32)
DIRECTORY
${CMAKE_SOURCE_DIR}/release/bin/.blender/locale
${CMAKE_SOURCE_DIR}/release/bin/.blender/fonts
- DESTINATION ${TARGETDIR_VER}/datafiles/locale
+ DESTINATION ${TARGETDIR_VER}/datafiles
PATTERN ".svn" EXCLUDE
)
@@ -667,14 +667,14 @@ elseif(APPLE)
if(WITH_INTERNATIONAL)
install(
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.Blanguages
- DESTINATION ${TARGETDIR_VER}/datafiles/
+ DESTINATION ${TARGETDIR_VER}/datafiles
)
install(
DIRECTORY
${CMAKE_SOURCE_DIR}/release/bin/.blender/fonts
${CMAKE_SOURCE_DIR}/release/bin/.blender/locale
- DESTINATION ${TARGETDIR_VER}/datafiles/
+ DESTINATION ${TARGETDIR_VER}/datafiles
PATTERN ".svn" EXCLUDE
)
endif()