summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Collapse)Author
2020-07-01cmake: stop linking against QGL after c6a0ab979239Jan Beich
2020-07-01externals: Track opus as submodule instead of using conanDavid Marcec
Supersedes #4068 see for details.
2020-06-29cmake: depend on WebEngine with system QtJan Beich
CMake Error at src/yuzu/CMakeLists.txt:7 (add_executable): Target "yuzu" links to target "Qt5::WebEngineCore" but the target was not found. Perhaps a find_package() call is missing for an IMPORTED target, or an ALIAS target is missing?
2020-06-21Singleton GC Adapter class, remove globals, fix naming conventionAmeer
Fix clang formatting Manual fix for configure_input_player formatting Add missing lib usb cmake command
2020-06-16externals: Revert to libressl, as build is broken with ↵bunnei
find_package(OpenSSL). (#4093) * externals: Revert to libressl, as build is broken with find_package(OpenSLL). * fixup! externals: Revert to libressl, as build is broken with find_package(OpenSLL). * fixup! externals: Revert to libressl, as build is broken with find_package(OpenSLL).
2020-05-31Update CMakeLists.txtbunnei
2020-05-31Update CMakeLists.txtbunnei
2020-05-09Mark the opus version check as broken.Markus Wick
2020-05-08Replace externals with Conan (#3735)James Rowe
* Remove git submodules that will be loaded through conan * Move custom Find modules to their own folder * Use conan for downloading missing external dependencies * CI: Change the yuzu source folder user to the user that the containers run on * Attempt to remove dirty mingw build hack * Install conan on the msvc build * Only set release build type when using not using multi config generator * Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries * Add workaround for submodules that use legacy CMAKE variables * Re-add USE_BUNDLED_QT on the msvc build bot
2020-04-18cmake: Silence -Werror=implicit-fallthrough in SDL2 headersJan Beich
In file included from src/input_common/sdl/sdl_impl.cpp:16: In file included from /usr/local/include/SDL2/SDL.h:32: In file included from /usr/local/include/SDL2/SDL_main.h:25: /usr/local/include/SDL2/SDL_stdinc.h:445:9: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] case 3: *_p++ = _val; /* fallthrough */ ^ /usr/local/include/SDL2/SDL_stdinc.h:445:9: note: insert '[[fallthrough]];' to silence this warning case 3: *_p++ = _val; /* fallthrough */ ^ [[fallthrough]]; /usr/local/include/SDL2/SDL_stdinc.h:445:9: note: insert 'break;' to avoid fall-through case 3: *_p++ = _val; /* fallthrough */ ^ break; /usr/local/include/SDL2/SDL_stdinc.h:446:9: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] case 2: *_p++ = _val; /* fallthrough */ ^ /usr/local/include/SDL2/SDL_stdinc.h:446:9: note: insert '[[fallthrough]];' to silence this warning case 2: *_p++ = _val; /* fallthrough */ ^ [[fallthrough]]; /usr/local/include/SDL2/SDL_stdinc.h:446:9: note: insert 'break;' to avoid fall-through case 2: *_p++ = _val; /* fallthrough */ ^ break; /usr/local/include/SDL2/SDL_stdinc.h:447:9: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] case 1: *_p++ = _val; /* fallthrough */ ^ /usr/local/include/SDL2/SDL_stdinc.h:447:9: note: insert '[[fallthrough]];' to silence this warning case 1: *_p++ = _val; /* fallthrough */ ^ [[fallthrough]]; /usr/local/include/SDL2/SDL_stdinc.h:447:9: note: insert 'break;' to avoid fall-through case 1: *_p++ = _val; /* fallthrough */ ^ break; 3 errors generated.
2020-02-17fix CMake build errors for certain SDL2 installationsBrian Clinkenbeard
2020-02-10use config mode for finding SDL2 with CMakeBrian Clinkenbeard
2020-01-23Input: UDP Client to provide motion and touch controlsfearlessTobi
An implementation of the cemuhook motion/touch protocol, this adds the ability for users to connect several different devices to citra to send direct motion and touch data to citra. Co-Authored-By: jroweboy <jroweboy@gmail.com>
2019-12-05Ignore git-related files in cmake for EA tarballsJake Merdich
This fixes the early-access builds on Windows (tested on EA 58). Cmake was previously looking for git-related files that were stripped out of the early access builds and failing; check if those exist before reading them.
2019-09-30cmake: Add cmake option to build Boxcat backendZach Hilman
Default enabled
2019-06-29Revert "CMake: Get Git submodule dependencies via CMake (#2474)"Tobias
This reverts commit 5cef446f42e698a524c6c3240fedb0031f8e5694.
2019-06-19CMake: Get Git submodule dependencies via CMake (#2474)Frederic L
* CMake: Get Git submodule dependencies via CMake * CMakeLists: Fixed unintentional line break * travis: Bring parity between linux-mingw and linux build script * CMakeLists: Fixed typo in error message
2019-05-14CMakeLists: Handle VS 2019 in a less annoying mannerLioncash
VS 2019 is binary compatible with VS 2017, so we can safely use the prebuilt libraries for VS 2017 with VS 2019. This makes it less annoying to build yuzu with the most up to date toolchain.
2019-04-07fix clang-format target when using a path with spaces on windowskhang06
2019-03-23Merge pull request #2253 from lioncash/flagsbunnei
Migrate off directly modifying CMAKE_* compilation-related flags directly
2019-03-17CMakeLists: Raise minimum Boost requirement to 1.66.0MerryMage
Required due to bugfix in boost for changed template resolving rules in GCC 7.3.0 in C++17 mode
2019-03-17CMakeLists: Move compilation flags into the src directoryLioncash
We generally shouldn't be hijacking CMAKE_CXX_FLAGS, etc as a means to append flags to the targets, since this adds the compilation flags to everything, including our externals, which can result in weird issues and makes the build hierarchy fragile. Instead, we want to just apply these compilation flags to our targets, and let those managing external libraries to properly specify their compilation flags. This also results in us not getting as many warnings, as we don't raise the warning level on every external target.
2019-03-15CMakeLists: Remove now-unnecessary GCC special-casingLioncash
This issue has since been fixed in newer versions of Boost, so we don't need to worry about this anymore.
2019-02-12cmake: Add Vulkan optionReinUsesLisp
2019-02-06gl_shader_disk_cache: Invalidate shader cache changes with CMake hashReinUsesLisp
2018-12-31Update Qt MSVC external to 5.12.0Zach Hilman
2018-12-28cmake: Add USE_QT_WEB_ENGINE flag and update build systemZach Hilman
2018-11-13GDBStub improvements:Hedges
- Add FPU support - Fix access to TLS Fix clang-format.
2018-10-23Merge pull request #1542 from lioncash/projectbunnei
CMakeLists: Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIR
2018-10-23CMakeLists: Remove EMU_ARCH_BITS definitionLioncash
This was only ever used by the now-removed memory_util functions. Also, given we don't plan to support 32-bit architectures, this is just a leftover from citra at this point.
2018-10-23cmake: mingw also needs _FILE_OFFSET_BITS=64Weiyi Wang
2018-10-20CMakeLists: Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIRLioncash
This is more localized to what we want to enforce directory-wise with the project. CMAKE_SOURCE_DIR indicates the root of the source tree, but this would cause the wrong behavior if someone included yuzu as part of a larger buildsystem (for whatever reason). Instead, we want to use the directory where the "project(yuzu)" command was declared as the root path reference.
2018-10-06Merge pull request #1332 from FearlessTobi/port-web-backendbunnei
Port web_service from Citra
2018-10-02string_util: unify UTF8<->UTF16 conversion to codecvtWeiyi Wang
2018-10-02Review comments -part 4fearlessTobi
2018-10-02Port web_service from CitrafearlessTobi
2018-09-25CMake: Remove superfluous CMAKE_RUNTIME_OUTPUT_DIRECTORY assignmentspycrab
2018-09-22Port citra-emu/citra#4214: "Set citra-qt project as default StartUp Project ↵fearlessTobi
in Visual Studio"
2018-09-20Merge pull request #1225 from tech4me/travis-windowsJames Rowe
travis: running mingw build on travis ci
2018-09-19travis: running mingw build on travis citech4me
This commit also fixed a broken cmake dependency with unicorn
2018-09-12Update CMakeLists.txtFrederic Laing
Set yuzu project as default StartUp Project in Visual Studio
2018-08-29Show game compatibility within yuzufearlessTobi
2018-08-14CMakeLists: Add architecture detection for AArch64Lioncash
We already have an equivalent in place for the 32-bit ARM architecture, so we should also have one for the newer 64-bit ARM architecture as well.
2018-08-12externals: Update to SDL2-2.0.8.bunnei
2018-08-11CMakeLists: lowercase find_library usageLioncash
The rest of the CMake script uses lowercase for commands (which is the general CMake style), making it more consistent with surrounding code.
2018-08-11CMakeLists: Change MSVC14 variable to MSVC_VERSIONLioncash
Use of the MSVC14 variable is discouraged in the CMake documentation (which makes sense, since MSVC_VERSION is the more general appliable variable).
2018-07-30audio_core: Implement Sink and SinkStream interfaces with cubeb.bunnei
2018-06-23Revert "Use Ninja for MSVC AppVeyor builds" (#584)bunnei
2018-06-05Drop /std:c++latest from MSVC command lineMichał Janiszewski
CMake already sets it to version 17 in all cases
2018-04-02Merge pull request #66 from RiverCityRansomware/qtUpdatebunnei
Updates CMakeLists to use Qt 5.10.0 instead of Qt 5.7