ref_vk: force disable on android for now

This commit is contained in:
Ivan Avdeev 2021-06-06 23:00:05 -07:00
parent 22eec42a60
commit ef1f88005f
1 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,10 @@ def configure(conf):
if conf.options.DEDICATED:
return
# Vulkan is not supported on Android yet for CI reasons: requres NDK>12, glslc lookup etc.
if conf.env.DEST_OS == 'android':
return
conf.load('glslc')
conf.define('REF_DLL', 1)