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:
Diffstat (limited to 'source/blender/editors/io/CMakeLists.txt')
-rw-r--r--source/blender/editors/io/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/editors/io/CMakeLists.txt b/source/blender/editors/io/CMakeLists.txt
index 5a35b251d0c..5afe348158f 100644
--- a/source/blender/editors/io/CMakeLists.txt
+++ b/source/blender/editors/io/CMakeLists.txt
@@ -26,6 +26,7 @@ set(INC
../../depsgraph
../../makesdna
../../makesrna
+ ../../usd
../../windowmanager
../../../../intern/guardedalloc
)
@@ -39,11 +40,13 @@ set(SRC
io_cache.c
io_collada.c
io_ops.c
+ io_usd.c
io_alembic.h
io_cache.h
io_collada.h
io_ops.h
+ io_usd.h
)
set(LIB
@@ -69,6 +72,13 @@ if(WITH_ALEMBIC)
endif()
endif()
+if(WITH_USD)
+ list(APPEND LIB
+ bf_usd
+ )
+ add_definitions(-DWITH_USD)
+endif()
+
if(WITH_INTERNATIONAL)
add_definitions(-DWITH_INTERNATIONAL)
endif()