Skip to content

Commit ea2970d

Browse files
hcorionAniLeo
authored andcommitted
Fix da build (RPCS3#2900)
* Add RelWithDebInfo * Fix the build
1 parent 392d91b commit ea2970d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ before_install:
4646
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
4747
sudo add-apt-repository ppa:beineri/opt-qt59-trusty -y;
4848
sudo apt-get update;
49-
sudo apt-get install qt59base -y;
49+
sudo apt-get install qt59base -y --allow-unauthenticated;
5050
fi;
5151
# Add coverall for C++ so coverall.io could be triggered. Even it should be --coverage and gcov.
5252
# Install updated libglew-dev since the version provided by trusty is outdated

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ option(VULKAN_PREBUILT "" OFF)
4040
# TODO: do real installation, including copying directory structure
4141
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${PROJECT_BINARY_DIR}/bin")
4242
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${PROJECT_BINARY_DIR}/bin")
43+
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO "${PROJECT_BINARY_DIR}/bin")
4344

4445
add_subdirectory( Vulkan )
4546
add_subdirectory( rpcs3 )

0 commit comments

Comments
 (0)