From 6cfc8144639eecc864cbbde8409a6d45673877d2 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Sat, 8 May 2021 23:37:57 -0400 Subject: [PATCH] - enable vulkan support for all platforms --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 572a87ac4..fa7d66978 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -188,9 +188,10 @@ target_architecture(TARGET_ARCHITECTURE) if( ${TARGET_ARCHITECTURE} MATCHES "x86_64" ) set( HAVE_VM_JIT ON ) - option (HAVE_VULKAN "Enable Vulkan support" ON) endif() +option (HAVE_VULKAN "Enable Vulkan support" ON) + # no, we're not using external asmjit for now, we made too many modifications to our's. # if the asmjit author uses our changes then we'll update this.