aboutsummaryrefslogtreecommitdiff
path: root/test/compiler
diff options
context:
space:
mode:
authorBryan Galdrikian <[email protected]>2018-01-22 14:04:16 -0800
committerBryan Galdrikian <[email protected]>2018-01-22 14:04:16 -0800
commit1dc1a87fba520bb45c1ce8165e8ea2c83c0a308d (patch)
tree5f8ca75a6b92c60fb5cf3b14282fc4cc1c127eb2 /test/compiler
parentUpdating readme.md to show updated UE4 Blast integration branches (diff)
downloadblast-1dc1a87fba520bb45c1ce8165e8ea2c83c0a308d.tar.xz
blast-1dc1a87fba520bb45c1ce8165e8ea2c83c0a308d.zip
Changes for 1.1.2 release candidate
See README.md, docs/release_notes.txt
Diffstat (limited to 'test/compiler')
-rw-r--r--test/compiler/cmake/BlastUnitTests.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/compiler/cmake/BlastUnitTests.cmake b/test/compiler/cmake/BlastUnitTests.cmake
index 0344264..61e3241 100644
--- a/test/compiler/cmake/BlastUnitTests.cmake
+++ b/test/compiler/cmake/BlastUnitTests.cmake
@@ -25,6 +25,7 @@ SET(UNITTEST_SOURCE_FILES
${UNITTEST_SOURCE_DIR}/AssetTests.cpp
${UNITTEST_SOURCE_DIR}/ActorTests.cpp
${UNITTEST_SOURCE_DIR}/APITests.cpp
+ ${UNITTEST_SOURCE_DIR}/AuthoringCutout.cpp
${UNITTEST_SOURCE_DIR}/CoreTests.cpp
${UNITTEST_SOURCE_DIR}/FamilyGraphTests.cpp
${UNITTEST_SOURCE_DIR}/MultithreadingTests.cpp
@@ -86,12 +87,16 @@ SET(UTILS_SOURCE_FILES
${UTILS_SOURCE_DIR}/TestProfiler.h
)
+SET(AUTHORING_SOURCE_FILES
+ ${BLAST_ROOT_DIR}/sdk/extensions/authoring/source/NvBlastExtAuthoringCutoutImpl.cpp
+)
ADD_EXECUTABLE(BlastUnitTests
${COMMON_SOURCE_FILES}
${UTILS_SOURCE_FILES}
${UNITTEST_SOURCE_FILES}
+ ${AUTHORING_SOURCE_FILES}
${SDK_COMMON_FILES}
${SDK_SOLVER_FILES}
@@ -126,6 +131,8 @@ TARGET_INCLUDE_DIRECTORIES(BlastUnitTests
PRIVATE ${BLAST_ROOT_DIR}/sdk/lowlevel/source
PRIVATE ${BLAST_ROOT_DIR}/sdk/extensions/assetutils/source
PRIVATE ${BLAST_ROOT_DIR}/sdk/extensions/assetutils/include
+ PRIVATE ${BLAST_ROOT_DIR}/sdk/extensions/authoring/source
+ PRIVATE ${BLAST_ROOT_DIR}/sdk/extensions/authoring/include
PRIVATE ${BLAST_ROOT_DIR}/sdk/extensions/serialization/include
PRIVATE ${BLAST_ROOT_DIR}/shared/utils