From ea1bb3b90e56e9f36b1f0375c86abdeda2db8b15 Mon Sep 17 00:00:00 2001 From: Zion Nimchuk Date: Mon, 28 May 2018 13:28:19 -0700 Subject: [PATCH] Convert all spaces to tabs in CMakeLists.txt --- rpcs3/CMakeLists.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/rpcs3/CMakeLists.txt b/rpcs3/CMakeLists.txt index b235792cd4..b40b700ee2 100644 --- a/rpcs3/CMakeLists.txt +++ b/rpcs3/CMakeLists.txt @@ -28,10 +28,10 @@ if(NOT Qt5Widgets_FOUND) if(CMAKE_SYSTEM MATCHES "Linux") message(FATAL_ERROR "Most distros do not provide an up-to-date version of Qt. If you're on Ubuntu or Linux Mint, there are PPAs you can use to install an up-to-date qt5 version. - https://launchpad.net/~beineri/+archive/ubuntu/opt-qt-5.10.1-xenial - https://launchpad.net/~beineri/+archive/ubuntu/opt-qt-5.10.1-trusty + https://launchpad.net/~beineri/+archive/ubuntu/opt-qt-5.10.1-xenial + https://launchpad.net/~beineri/+archive/ubuntu/opt-qt-5.10.1-trusty just make sure to run - source /opt/qt510/bin/qt510-env.sh + source /opt/qt510/bin/qt510-env.sh before re-running cmake") elseif(WIN32) message(FATAL_ERROR "You can download the latest version of Qt5 here: https://www.qt.io/download-open-source/") @@ -188,9 +188,9 @@ set(CMAKE_MODULE_PATH "${RPCS3_SRC_DIR}/cmake_modules") find_package(OpenGL REQUIRED) find_package(OpenAL REQUIRED) if(NOT WITHOUT_LLVM) - if (EXISTS "${CMAKE_SOURCE_DIR}/llvmlibs") - find_package(LLVM 6.0 CONFIG) - endif() + if (EXISTS "${CMAKE_SOURCE_DIR}/llvmlibs") + find_package(LLVM 6.0 CONFIG) + endif() if(NOT LLVM_FOUND) message("LLVM will be built from the submodule.") @@ -487,9 +487,9 @@ cotire(rpcs3) if (UNIX) # Copy icons to executable directory -add_custom_command(TARGET rpcs3 POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_directory - ${CMAKE_SOURCE_DIR}/bin/Icons $/Icons) +add_custom_command( TARGET rpcs3 POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + ${CMAKE_SOURCE_DIR}/bin/Icons $/Icons) endif() # Unix installation @@ -505,9 +505,9 @@ if(UNIX AND NOT APPLE) DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications) install(FILES rpcs3.appdata.xml DESTINATION ${CMAKE_INSTALL_PREFIX}/share/metainfo) - # Install other files - install(DIRECTORY ../bin/Icons + # Install other files + install(DIRECTORY ../bin/Icons DESTINATION ${CMAKE_INSTALL_PREFIX}/share/rpcs3) - install(DIRECTORY ../bin/GuiConfigs + install(DIRECTORY ../bin/GuiConfigs DESTINATION ${CMAKE_INSTALL_PREFIX}/share/rpcs3) endif()