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:
authorJeroen Bakker <jeroen@blender.org>2020-09-08 12:31:47 +0300
committerJeroen Bakker <jeroen@blender.org>2020-09-08 14:23:10 +0300
commitab6f59ff3b8c7e821b4cb486c83ab1faada42e5e (patch)
tree28076199f2a70df56f5d458287a9f259a5803102 /source/blender/draw/CMakeLists.txt
parent0d68f55789aff106bdf9e038812d358ca55c060f (diff)
GPU: Extract GPU Base Test case
The draw manager test case initialized ghost, gpu and draw manager. This change splits the base test case to GPU specific and draw manager specific test case. The GPU test base test case will be used for low level GPU tests.
Diffstat (limited to 'source/blender/draw/CMakeLists.txt')
-rw-r--r--source/blender/draw/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/CMakeLists.txt b/source/blender/draw/CMakeLists.txt
index b299df50852..8aea2f8e969 100644
--- a/source/blender/draw/CMakeLists.txt
+++ b/source/blender/draw/CMakeLists.txt
@@ -437,9 +437,9 @@ if(WITH_GTESTS)
)
set(TEST_INC
"../../../intern/ghost/"
+ "../gpu/tests/"
)
set(TEST_LIB
- bf_draw
)
include(GTestTesting)
blender_add_test_lib(bf_draw_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")