mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[vulkan] Conditionalize vulkan tests
This commit is contained in:
parent
85087177bf
commit
c5f2aca07d
2 changed files with 5 additions and 1 deletions
|
@ -20,3 +20,4 @@ AC_SUBST(GLSLANGVALIDATOR, [$glslangvalidator])
|
|||
|
||||
AM_CONDITIONAL(X11_VULKAN, test "x$HAVE_VULKAN" = "xyes")
|
||||
AM_CONDITIONAL(WIN_VULKAN, test "x$HAVE_VULKAN" = "xyes")
|
||||
AM_CONDITIONAL(TEST_VULKAN, test "x$HAVE_VULKAN" = "xyes")
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
libs_video_renderer_vulkan_tests = \
|
||||
libs/video/renderer/vulkan/test/test-staging
|
||||
|
||||
if TEST_VULKAN
|
||||
TESTS += $(libs_video_renderer_vulkan_tests)
|
||||
|
||||
check_PROGRAMS += $(libs_video_renderer_vulkan_tests)
|
||||
endif
|
||||
|
||||
EXTRA_PROGRAMS += $(libs_video_renderer_vulkan_tests)
|
||||
|
||||
libs_video_renderer_vulkan_test_libs= \
|
||||
libs/video/renderer/librender_vulkan.la \
|
||||
|
|
Loading…
Reference in a new issue