Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/CMakeLists.txt
| Show First 20 Lines • Show All 474 Lines • ▼ Show 20 Lines | |||||
| # Needed so we can use dna_type_offsets.h for defaults initialization. | # Needed so we can use dna_type_offsets.h for defaults initialization. | ||||
| add_dependencies(bf_draw bf_dna) | add_dependencies(bf_draw bf_dna) | ||||
| if(WITH_GTESTS) | if(WITH_GTESTS) | ||||
| if(WITH_OPENGL_DRAW_TESTS) | if(WITH_OPENGL_DRAW_TESTS) | ||||
| set(TEST_SRC | set(TEST_SRC | ||||
| tests/draw_testing.cc | tests/draw_testing.cc | ||||
| tests/shaders_test.cc | tests/shaders_test.cc | ||||
| tests/performance_test.cc | |||||
brecht: I guess the drawing performance test was not meant to be part of this patch. | |||||
| ) | ) | ||||
| set(TEST_INC | set(TEST_INC | ||||
| "../../../intern/ghost/" | "../../../intern/ghost/" | ||||
| "../gpu/tests/" | "../gpu/tests/" | ||||
| ) | ) | ||||
| set(TEST_LIB | set(TEST_LIB | ||||
| ) | ) | ||||
| include(GTestTesting) | include(GTestTesting) | ||||
| blender_add_test_lib(bf_draw_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}") | blender_add_test_lib(bf_draw_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}") | ||||
| endif() | endif() | ||||
| endif() | endif() | ||||
I guess the drawing performance test was not meant to be part of this patch.