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:
authorlazydodo <github@lazydodo.com>2017-05-26 00:23:45 +0300
committerlazydodo <github@lazydodo.com>2017-05-26 00:23:45 +0300
commit1358c3945552291febefc22edb554794bcc2e844 (patch)
treed24901d7a7d08998ccfc26cf2b09b96c68c6b503 /source/blender/alembic
parent9179797811bb3eeb7400a66839effe6925ae2940 (diff)
[MSVC] Fix build error. linker was searching for a mangled version of versionstr
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_archive.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/alembic/intern/abc_archive.cc b/source/blender/alembic/intern/abc_archive.cc
index ff14cf15124..bd16196cb78 100644
--- a/source/blender/alembic/intern/abc_archive.cc
+++ b/source/blender/alembic/intern/abc_archive.cc
@@ -23,8 +23,10 @@
*/
#include "abc_archive.h"
-
-#include "BKE_blender_version.h"
+extern "C"
+{
+ #include "BKE_blender_version.h"
+}
#ifdef WIN32
# include "utfconv.h"