summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Collapse)Author
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
2018-03-21CMake: Set EMU_ARCH_BITS in CMakeLists.txtN00byKing
2018-01-26Merge pull request #144 from KAMiKAZOW/patch-1bunnei
Install Linux icon in hicolor instead of pixmaps
2018-01-25Fix typo for dependent optionsJames Rowe
2018-01-26Install Linux icon in hicolor instead of pixmapsKAMiKAZOW
hicolor is the preferred location for applications. See https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#directory_layout Same as https://github.com/citra-emu/citra/pull/3007
2018-01-21CMakeLists: Fix unicorn build for macOS developers with x86_64-only systemsMerryMage
Some of us do not have any i386 libraries required to build x86-32 universal libraries.
2018-01-21CMakeLists: Do not look for system Unicorn by defaultMerryMage
Since we use a custom build of unicorn it doesn't make much sense to look for the system version, unless the user explicitly wants to override this.
2018-01-20CMake: Conditionally turn on bundled libs for MSVCJames Rowe
Removes the annoying step when generating sln for MSVC where you have to click an extra checkbox after the first generate fails by using a conditional option. The USE_BUNDLED options will be off by default, but if the enable_lib option is enabled and the toolset is msvc, they are turned ON.
2018-01-20CMake: Add a custom clang format targetJames Rowe
Checks to see if clang-format can be found, and if it is, sets up a custom target that will run against the src dir and auto formats all files. In MSVC, this is a project, and in Makefiles, its a make target
2018-01-19Port citra #3352 to yuzu (#103)River City Ransomware
* Port citra #3352 to yuzu This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic * Fixed clang-format errors * fixes more clang-format errors
2018-01-17CMakeLists: Derive the source directory grouping from targets themselvesLioncash
Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
2018-01-17Update qtRiver City Ransomware
Updates qt from 5.7 to 5.10.0, fixing some errors relating to setting the process dpi
2018-01-16CMake: Override PYTHON environment variable for libunicornspycrab
2018-01-16Build: Automagically handle unicornJames Rowe
On MSVC if unicorn isn't found, fallback to bundled unicorn On everything else, fallback to building unicorn in externals Also fixes loading unicorn in msvc
2018-01-16Build: Add unicorn as a submodule and build it if neededJames Rowe
Adds a cmake custom target that will build unicorn on first compile and uses this in the build scripts as well. Updates Appveyor and Travis build scripts to work with the new unicorn build, and updates the paths to all of the different artifacts.
2018-01-15rename CITRA to YUZUSimonx22
2018-01-15Merge pull request #17 from spycrab/bindirbunnei
CMake: Output binaries to bin/
2018-01-15CMake: Output binaries to bin/spycrab
2018-01-14fixed build for gcc c++17 / boost.icl incompatibilityHarry Prevor
2018-01-14Fix compilation on case-sensitive OSXRobin Lambertz
When compiling on a case-sensitive filesystem on OSX, cmake doesn't find the FindUnicorn file, because it looks for Findunicorn.cmake. We should uses the correct case to avoid this issue.
2018-01-13Add new icons and fix up the linux paths for installJames Rowe
2018-01-12Massive removal of unused modulesJames Rowe
2018-01-12CMakeLists: Use C++ 17.bunnei
2018-01-08cmake: Use LIBUNICORN_* on Windows.bunnei
2018-01-08fix macos buildMerryMage
2018-01-04externals: Use unicorn DLL instead of static lib.bunnei
2018-01-04unicorn: Use for arm interface on Windows.bunnei
2017-09-11Build: Enable SSL in mingw by linking against WinSSLJames Rowe
The mingw builds aren't submitting telemetry because the curl library they are linked against is configured to use openSSL and openSSL looks for the certificates in the users home folder. This keeps it from contacting web services because it can't communicate over SSL. This commit adds a download in mingw builds that will download a precompiled curl for mingw linked against winssl and sspi.
2017-09-02Add manifestDaMan