From f52fa5e46ca963e22dc29dca1d2b9159347fe415 Mon Sep 17 00:00:00 2001 From: Zion Nimchuk Date: Sun, 18 Feb 2018 19:58:58 -0800 Subject: [PATCH] Re-arrange VULKAN_PREBUILT option --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a082fcbcde..1ff45f2ea9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.1) option(WITH_GDB "WITH_GDB" OFF) option(WITHOUT_LLVM "WITHOUT_LLVM" OFF) option(USE_NATIVE_INSTRUCTIONS "USE_NATIVE_INSTRUCTIONS makes rpcs3 compile with -march=native, which is useful for local builds, but not good for packages." ON) +option(VULKAN_PREBUILT "" OFF) if (WITH_GDB) add_definitions(-DWITH_GDB_DEBUGGER) @@ -36,8 +37,6 @@ if (NOT USE_SYSTEM_LIBPNG) add_subdirectory( 3rdparty/libpng ) endif() -option(VULKAN_PREBUILT "" OFF) - # TODO: do real installation, including copying directory structure set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${PROJECT_BINARY_DIR}/bin") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${PROJECT_BINARY_DIR}/bin")