From ea2970d6e5a15bc0faf8e69143960e72b552595d Mon Sep 17 00:00:00 2001 From: Zion Date: Thu, 22 Jun 2017 13:05:32 -0700 Subject: [PATCH] Fix da build (#2900) * Add RelWithDebInfo * Fix the build --- .travis.yml | 2 +- CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ac7c952e3a..517b40fb8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,7 +46,7 @@ before_install: - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo add-apt-repository ppa:beineri/opt-qt59-trusty -y; sudo apt-get update; - sudo apt-get install qt59base -y; + sudo apt-get install qt59base -y --allow-unauthenticated; fi; # Add coverall for C++ so coverall.io could be triggered. Even it should be --coverage and gcov. # Install updated libglew-dev since the version provided by trusty is outdated diff --git a/CMakeLists.txt b/CMakeLists.txt index fb6edd66e1..7ec8233dae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,6 +40,7 @@ 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") +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO "${PROJECT_BINARY_DIR}/bin") add_subdirectory( Vulkan ) add_subdirectory( rpcs3 )