chore: make yuzu REUSE compliant
[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
2022-05-15 03:06:02 +03:00
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
2014-08-24 05:22:05 +04:00
# Enable modules to include each other's files
include_directories ( . )
2019-03-16 08:45:08 +03:00
# CMake seems to only define _DEBUG on Windows
set_property ( DIRECTORY APPEND PROPERTY
C O M P I L E _ D E F I N I T I O N S $ < $ < C O N F I G : D e b u g > : _ D E B U G > $ < $ < N O T : $ < C O N F I G : D e b u g > > : N D E B U G > )
# Set compilation flags
if ( MSVC )
2019-03-16 09:12:13 +03:00
set ( CMAKE_CONFIGURATION_TYPES Debug Release CACHE STRING "" FORCE )
2019-03-16 08:45:08 +03:00
# Silence "deprecation" warnings
2019-03-16 09:12:13 +03:00
add_definitions ( -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS )
2019-03-16 08:45:08 +03:00
2019-03-16 09:12:13 +03:00
# Avoid windows.h junk
add_definitions ( -DNOMINMAX )
2019-03-16 08:45:08 +03:00
2019-03-16 09:12:13 +03:00
# Avoid windows.h from including some usually unused libs like winsocks.h, since this might cause some redefinition errors.
add_definitions ( -DWIN32_LEAN_AND_MEAN )
2019-03-16 08:45:08 +03:00
2023-11-06 23:43:15 +03:00
# Ensure that projects are built with Unicode support.
2019-04-16 00:32:47 +03:00
add_definitions ( -DUNICODE -D_UNICODE )
2023-09-02 20:45:06 +03:00
# /W4 - Level 4 warnings
2019-05-07 21:06:20 +03:00
# /MP - Multi-threaded compilation
# /Zi - Output debugging information
2021-12-07 03:14:29 +03:00
# /Zm - Specifies the precompiled header memory allocation limit
2019-05-07 21:06:20 +03:00
# /Zo - Enhanced debug info for optimized builds
# /permissive- - Enables stricter C++ standards conformance checks
# /EHsc - C++-only exception handling semantics
2021-03-05 09:46:56 +03:00
# /utf-8 - Set source and execution character sets to UTF-8
2019-05-09 22:49:27 +03:00
# /volatile:iso - Use strict standards-compliant volatile semantics.
2019-05-07 21:06:20 +03:00
# /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates
# /Zc:inline - Let codegen omit inline functions in object files
2023-06-22 05:57:40 +03:00
# /Zc:preprocessor - Enable standards-conforming preprocessor
2019-05-07 21:06:20 +03:00
# /Zc:throwingNew - Let codegen assume `operator new` (without std::nothrow) will never return null
2021-10-29 03:43:46 +03:00
# /GT - Supports fiber safety for data allocated using static thread-local storage
2019-05-07 21:02:29 +03:00
add_compile_options (
/ M P
2021-12-07 03:14:29 +03:00
/ Z m 2 0 0
2019-05-07 21:02:29 +03:00
/ Z o
/ p e r m i s s i v e -
/ E H s c
2023-06-07 03:19:44 +03:00
/ s t d : c + + 2 0
2021-03-05 09:46:56 +03:00
/ u t f - 8
2019-05-09 22:49:27 +03:00
/ v o l a t i l e : i s o
2019-05-07 21:06:20 +03:00
/ Z c : e x t e r n C o n s t e x p r
2019-05-07 21:02:29 +03:00
/ Z c : i n l i n e
2023-06-22 05:57:40 +03:00
/ Z c : p r e p r o c e s s o r
2019-05-07 21:02:29 +03:00
/ Z c : t h r o w i n g N e w
2021-09-13 23:30:30 +03:00
/ G T
2020-10-30 06:30:42 +03:00
2023-06-07 03:19:44 +03:00
# Modules
2023-11-06 23:43:15 +03:00
/ e x p e r i m e n t a l : m o d u l e - # Explicitly disable module support due to conflicts with precompiled headers.
2023-06-07 03:19:44 +03:00
2021-06-28 21:23:41 +03:00
# External headers diagnostics
/ e x t e r n a l : a n g l e b r a c k e t s # Treats all headers included by #include <header>, where the header file is enclosed in angle brackets (< >), as external headers
2023-11-06 23:43:15 +03:00
/ e x t e r n a l : W 0 # Sets the default warning level to 0 for external headers, effectively disabling warnings for them.
2021-06-28 21:23:41 +03:00
2020-10-30 06:30:42 +03:00
# Warnings
2023-09-02 20:45:06 +03:00
/ W 4
2022-10-21 09:34:06 +03:00
/ W X
2021-06-28 10:55:21 +03:00
/ w e 4 0 6 2 # Enumerator 'identifier' in a switch of enum 'enumeration' is not handled
2021-07-03 12:51:31 +03:00
/ w e 4 1 8 9 # 'identifier': local variable is initialized but not referenced
2021-01-09 06:21:53 +03:00
/ w e 4 2 6 5 # 'class': class has virtual functions, but destructor is not virtual
2021-06-28 10:55:21 +03:00
/ w e 4 3 8 8 # 'expression': signed/unsigned mismatch
/ w e 4 3 8 9 # 'operator': signed/unsigned mismatch
2023-11-06 23:50:29 +03:00
/ w e 4 4 5 6 # Declaration of 'identifier' hides previous local declaration
2022-05-27 03:08:21 +03:00
/ w e 4 4 5 7 # Declaration of 'identifier' hides function parameter
/ w e 4 4 5 8 # Declaration of 'identifier' hides class member
/ w e 4 4 5 9 # Declaration of 'identifier' hides global declaration
2022-04-08 06:00:04 +03:00
/ w e 4 5 0 5 # 'function': unreferenced local function has been removed
2021-06-28 10:55:21 +03:00
/ w e 4 5 4 7 # 'operator': operator before comma has no effect; expected operator with side-effect
2020-10-30 06:36:44 +03:00
/ w e 4 5 4 9 # 'operator1': operator before comma has no effect; did you intend 'operator2'?
/ w e 4 5 5 5 # Expression has no effect; expected expression with side-effect
2022-10-21 09:34:06 +03:00
/ w e 4 8 2 6 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior.
2021-01-09 06:21:53 +03:00
/ w e 5 0 3 8 # data member 'member1' will be initialized after data member 'member2'
2022-10-21 09:34:07 +03:00
/ w e 5 2 3 3 # explicit lambda capture 'identifier' is not used
2022-04-08 06:00:04 +03:00
/ w e 5 2 4 5 # 'function': unreferenced function with internal linkage has been removed
2022-10-21 09:34:07 +03:00
/ w d 4 1 0 0 # 'identifier': unreferenced formal parameter
/ w d 4 3 2 4 # 'struct_name': structure was padded due to __declspec(align())
2023-11-06 23:50:29 +03:00
/ w d 4 2 0 1 # nonstandard extension used : nameless struct/union
2023-09-12 00:25:21 +03:00
/ w d 4 7 0 2 # unreachable code (when used with LTO)
2019-05-07 21:02:29 +03:00
)
2019-03-16 08:45:08 +03:00
2022-11-23 02:38:23 +03:00
if ( USE_CCACHE OR YUZU_USE_PRECOMPILED_HEADERS )
2023-03-12 06:10:38 +03:00
# when caching, we need to use /Z7 to downgrade debug info to use an older but more cacheable format
2022-11-23 02:38:23 +03:00
# Precompiled headers are deleted if not using /Z7. See https://github.com/nanoant/CMakePCHCompiler/issues/21
2021-12-24 04:23:02 +03:00
add_compile_options ( /Z7 )
2023-09-02 20:45:06 +03:00
# Avoid D9025 warning
string ( REPLACE "/Zi" "" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}" )
string ( REPLACE "/Zi" "" CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}" )
2021-12-24 04:23:02 +03:00
else ( )
add_compile_options ( /Zi )
endif ( )
2021-09-13 23:30:30 +03:00
if ( ARCHITECTURE_x86_64 )
add_compile_options ( /QIntel-jcc-erratum )
endif ( )
2019-03-16 08:45:08 +03:00
# /GS- - No stack buffer overflow checks
2019-03-16 09:12:13 +03:00
add_compile_options ( "$<$<CONFIG:Release>:/GS->" )
2019-03-16 08:45:08 +03:00
set ( CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG /MANIFEST:NO" CACHE STRING "" FORCE )
set ( CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE )
else ( )
2019-05-04 09:06:55 +03:00
add_compile_options (
2023-09-02 21:41:21 +03:00
- f w r a p v
2022-10-21 09:34:05 +03:00
- W e r r o r = a l l
- W e r r o r = e x t r a
2020-04-17 06:23:57 +03:00
- W e r r o r = m i s s i n g - d e c l a r a t i o n s
2022-05-27 03:08:21 +03:00
- W e r r o r = s h a d o w
2022-10-21 09:34:05 +03:00
- W e r r o r = u n u s e d
2022-10-21 09:34:05 +03:00
2019-05-04 09:06:55 +03:00
- W n o - a t t r i b u t e s
2020-11-24 01:24:37 +03:00
- W n o - i n v a l i d - o f f s e t o f
2020-04-15 22:59:23 +03:00
- W n o - u n u s e d - p a r a m e t e r
2019-05-04 09:06:55 +03:00
)
2019-03-16 08:45:08 +03:00
2023-08-21 00:52:58 +03:00
if ( CMAKE_CXX_COMPILER_ID MATCHES Clang ) # Clang or AppleClang
add_compile_options (
- W n o - b r a c e d - s c a l a r - i n i t
- W n o - u n u s e d - p r i v a t e - f i e l d
- W n o - n u l l a b i l i t y - c o m p l e t e n e s s
- W e r r o r = s h a d o w - u n c a p t u r e d - l o c a l
- W e r r o r = i m p l i c i t - f a l l t h r o u g h
- W e r r o r = t y p e - l i m i t s
)
endif ( )
2020-06-27 17:52:23 +03:00
if ( ARCHITECTURE_x86_64 )
add_compile_options ( "-mcx16" )
endif ( )
2019-03-16 08:45:08 +03:00
if ( APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang )
2019-03-16 09:12:13 +03:00
add_compile_options ( "-stdlib=libc++" )
2019-03-16 08:45:08 +03:00
endif ( )
2023-04-03 02:02:04 +03:00
# GCC bugs
2023-08-17 17:03:34 +03:00
if ( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "11" AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
2023-04-03 02:02:04 +03:00
# These diagnostics would be great if they worked, but are just completely broken
# and produce bogus errors on external libraries like fmt.
add_compile_options (
- W n o - a r r a y - b o u n d s
- W n o - s t r i n g o p - o v e r r e a d
- W n o - s t r i n g o p - o v e r f l o w
)
endif ( )
2019-03-16 08:45:08 +03:00
# Set file offset size to 64 bits.
#
# On modern Unixes, this is typically already the case. The lone exception is
# glibc, which may default to 32 bits. glibc allows this to be configured
# by setting _FILE_OFFSET_BITS.
if ( CMAKE_SYSTEM_NAME STREQUAL "Linux" OR MINGW )
add_definitions ( -D_FILE_OFFSET_BITS=64 )
endif ( )
if ( MINGW )
add_definitions ( -DMINGW_HAS_SECURE_API )
if ( MINGW_STATIC_BUILD )
add_definitions ( -DQT_STATICPLUGIN )
2019-03-16 09:12:13 +03:00
add_compile_options ( "-static" )
2019-03-16 08:45:08 +03:00
endif ( )
endif ( )
2019-06-30 14:29:52 +03:00
if ( CMAKE_SYSTEM_NAME STREQUAL "Linux" OR MINGW )
# GNU ar: Create thin archive files.
# Requires binutils-2.19 or later.
set ( CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> qcTP <TARGET> <LINK_FLAGS> <OBJECTS>" )
set ( CMAKE_C_ARCHIVE_APPEND "<CMAKE_AR> qTP <TARGET> <LINK_FLAGS> <OBJECTS>" )
set ( CMAKE_CXX_ARCHIVE_CREATE "<CMAKE_AR> qcTP <TARGET> <LINK_FLAGS> <OBJECTS>" )
set ( CMAKE_CXX_ARCHIVE_APPEND "<CMAKE_AR> qTP <TARGET> <LINK_FLAGS> <OBJECTS>" )
endif ( )
2019-03-16 08:45:08 +03:00
endif ( )
2013-08-30 07:35:09 +04:00
add_subdirectory ( common )
add_subdirectory ( core )
2018-07-27 03:01:37 +03:00
add_subdirectory ( audio_core )
2014-04-10 07:09:05 +04:00
add_subdirectory ( video_core )
2022-07-06 03:20:39 +03:00
add_subdirectory ( network )
2017-01-21 12:53:03 +03:00
add_subdirectory ( input_common )
2021-01-09 09:30:07 +03:00
add_subdirectory ( shader_recompiler )
2022-12-29 01:18:27 +03:00
if ( YUZU_ROOM )
add_subdirectory ( dedicated_room )
endif ( )
2022-01-12 02:36:20 +03:00
if ( YUZU_TESTS )
add_subdirectory ( tests )
endif ( )
2019-03-16 08:45:08 +03:00
2016-03-01 20:24:18 +03:00
if ( ENABLE_SDL2 )
2018-01-12 05:21:20 +03:00
add_subdirectory ( yuzu_cmd )
2014-08-24 05:22:05 +04:00
endif ( )
2019-03-16 08:45:08 +03:00
2014-08-24 05:22:05 +04:00
if ( ENABLE_QT )
2018-01-12 05:21:20 +03:00
add_subdirectory ( yuzu )
2017-07-10 00:52:18 +03:00
endif ( )
2019-03-16 08:45:08 +03:00
2018-09-16 21:05:51 +03:00
if ( ENABLE_WEB_SERVICE )
add_subdirectory ( web_service )
endif ( )
2022-12-18 10:27:18 +03:00
if ( ANDROID )
add_subdirectory ( android/app/src/main/jni )
target_include_directories ( yuzu-android PRIVATE android/app/src/main )
endif ( )