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")