<feed xmlns='http://www.w3.org/2005/Atom'>
<title>yuzu-mainline/externals/find-modules/Findlz4.cmake, branch master</title>
<subtitle>A backup of the Yuzu mainline repo. Only includes the master branch, nothing else.
</subtitle>
<id>https://git.benis.co.uk/yuzu-mainline/atom?h=master</id>
<link rel='self' href='https://git.benis.co.uk/yuzu-mainline/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/'/>
<updated>2023-01-02T17:22:07+00:00</updated>
<entry>
<title>cmake: move find-modules to root cmake dir</title>
<updated>2023-01-02T17:22:07+00:00</updated>
<author>
<name>Alexandre Bouvier</name>
<email>contact@amb.tf</email>
</author>
<published>2022-12-31T13:23:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=eceee8c3d930563e26841d556f9acb965eab67c8'/>
<id>urn:sha1:eceee8c3d930563e26841d556f9acb965eab67c8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cmake: improve find_package failure messages</title>
<updated>2023-01-02T01:27:25+00:00</updated>
<author>
<name>Alexandre Bouvier</name>
<email>contact@amb.tf</email>
</author>
<published>2022-12-31T11:48:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=1dfcf19c36dfa08a5ed48d5c367ff4aeacbf5bfa'/>
<id>urn:sha1:1dfcf19c36dfa08a5ed48d5c367ff4aeacbf5bfa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>build: tweak the find modules even more</title>
<updated>2022-12-15T10:52:50+00:00</updated>
<author>
<name>Andrea Pappacoda</name>
<email>andrea@pappacoda.it</email>
</author>
<published>2022-12-14T08:30:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=4447c9a46edafc5dbea80c96add3605c177c1b5b'/>
<id>urn:sha1:4447c9a46edafc5dbea80c96add3605c177c1b5b</id>
<content type='text'>
As described in
https://github.com/yuzu-emu/yuzu/pull/9395#discussion_r1047456172
checking for PKG_CONFIG_FOUND before calling pkg_search_module() is
unneeded, and some find modules (like FindFFmpeg.cmake) don't do this
already. Consequently, this patch removes these checks.
</content>
</entry>
<entry>
<title>cmake: correct find modules</title>
<updated>2022-12-06T04:32:09+00:00</updated>
<author>
<name>Alexandre Bouvier</name>
<email>contact@amb.tf</email>
</author>
<published>2022-12-06T03:17:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=bb3440f7c46a3a2478f63bf9609202e5996d100d'/>
<id>urn:sha1:bb3440f7c46a3a2478f63bf9609202e5996d100d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cmake: prefer system libraries</title>
<updated>2022-12-04T16:09:25+00:00</updated>
<author>
<name>Alexandre Bouvier</name>
<email>contact@amb.tf</email>
</author>
<published>2022-11-25T18:35:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=8e17b5469fc7f5211fc3e24841896ea030adce84'/>
<id>urn:sha1:8e17b5469fc7f5211fc3e24841896ea030adce84</id>
<content type='text'>
</content>
</entry>
<entry>
<title>build: simplify find modules</title>
<updated>2022-07-29T20:52:23+00:00</updated>
<author>
<name>Andrea Pappacoda</name>
<email>andrea@pappacoda.it</email>
</author>
<published>2022-07-28T14:44:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=064625ef58d4166b4983119f5389118113505a84'/>
<id>urn:sha1:064625ef58d4166b4983119f5389118113505a84</id>
<content type='text'>
With this patch I've deleted a few find modules that are now unused
since the vcpkg transition, as the CMake code now forces CONFIG mode for
Catch2, fmt and nlohmann_json.

I've then simplified the lz4, opus, and zstd modules by exclusively
using pkg-config. They were using it already, but were ignoring the
result. Also, I believe that manually looking for libraries was required
for Conan to work, and it is thus not needed anymore.

Lastly, I believe that there is no platform that ships these system libs
without pkg-config/pkgconf, so requiring it should be fine.
</content>
</entry>
<entry>
<title>chore: make yuzu REUSE compliant</title>
<updated>2022-07-27T10:53:49+00:00</updated>
<author>
<name>Andrea Pappacoda</name>
<email>andrea@pappacoda.it</email>
</author>
<published>2022-05-15T00:06:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=cdb240f3d4d9c0d6d56e6660d8c45da4ab60ff59'/>
<id>urn:sha1:cdb240f3d4d9c0d6d56e6660d8c45da4ab60ff59</id>
<content type='text'>
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.

Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.

The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.

Following REUSE has a few advantages over the current approach:

- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
  `.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
  files like binary assets / images is always accurate and up to date

To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.

[REUSE]: https://reuse.software

Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
</content>
</entry>
<entry>
<title>Replace externals with Conan (#3735)</title>
<updated>2020-05-08T21:09:29+00:00</updated>
<author>
<name>James Rowe</name>
<email>jroweboy@gmail.com</email>
</author>
<published>2020-05-08T21:09:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benis.co.uk/yuzu-mainline/commit/?id=bc30a591ba7252e0c16d9c1b3c75a7073735bcae'/>
<id>urn:sha1:bc30a591ba7252e0c16d9c1b3c75a7073735bcae</id>
<content type='text'>
* 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</content>
</entry>
</feed>
