cdb240f3d4
[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 01cf05bc75
72 lines
2 KiB
CMake
72 lines
2 KiB
CMake
# SPDX-FileCopyrightText: 2020 yuzu Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
find_package(PkgConfig QUIET)
|
|
pkg_check_modules(PC_fmt QUIET fmt)
|
|
|
|
find_path(fmt_INCLUDE_DIR
|
|
NAMES format.h
|
|
PATHS ${PC_fmt_INCLUDE_DIRS} ${CONAN_INCLUDE_DIRS_fmt}
|
|
PATH_SUFFIXES fmt
|
|
)
|
|
|
|
find_library(fmt_LIBRARY
|
|
NAMES fmt
|
|
PATHS ${PC_fmt_LIBRARY_DIRS} ${CONAN_LIB_DIRS_fmt}
|
|
)
|
|
|
|
if(fmt_INCLUDE_DIR)
|
|
set(_fmt_version_file "${fmt_INCLUDE_DIR}/core.h")
|
|
if(NOT EXISTS "${_fmt_version_file}")
|
|
set(_fmt_version_file "${fmt_INCLUDE_DIR}/format.h")
|
|
endif()
|
|
if(EXISTS "${_fmt_version_file}")
|
|
# parse "#define FMT_VERSION 60200" to 6.2.0
|
|
file(STRINGS "${_fmt_version_file}" fmt_VERSION_LINE
|
|
REGEX "^#define[ \t]+FMT_VERSION[ \t]+[0-9]+$")
|
|
string(REGEX REPLACE "^#define[ \t]+FMT_VERSION[ \t]+([0-9]+)$"
|
|
"\\1" fmt_VERSION "${fmt_VERSION_LINE}")
|
|
foreach(ver "fmt_VERSION_PATCH" "fmt_VERSION_MINOR" "fmt_VERSION_MAJOR")
|
|
math(EXPR ${ver} "${fmt_VERSION} % 100")
|
|
math(EXPR fmt_VERSION "(${fmt_VERSION} - ${${ver}}) / 100")
|
|
endforeach()
|
|
set(fmt_VERSION
|
|
"${fmt_VERSION_MAJOR}.${fmt_VERSION_MINOR}.${fmt_VERSION_PATCH}")
|
|
endif()
|
|
unset(_fmt_version_file)
|
|
unset(fmt_VERSION_LINE)
|
|
unset(fmt_VERSION_MAJOR)
|
|
unset(fmt_VERSION_MINOR)
|
|
unset(fmt_VERSION_PATCH)
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(fmt
|
|
FOUND_VAR fmt_FOUND
|
|
REQUIRED_VARS
|
|
fmt_LIBRARY
|
|
fmt_INCLUDE_DIR
|
|
fmt_VERSION
|
|
VERSION_VAR fmt_VERSION
|
|
)
|
|
|
|
if(fmt_FOUND)
|
|
set(fmt_LIBRARIES ${fmt_LIBRARY})
|
|
set(fmt_INCLUDE_DIRS ${fmt_INCLUDE_DIR})
|
|
set(fmt_DEFINITIONS ${PC_fmt_CFLAGS_OTHER})
|
|
endif()
|
|
|
|
if(fmt_FOUND AND NOT TARGET fmt::fmt)
|
|
add_library(fmt::fmt UNKNOWN IMPORTED)
|
|
set_target_properties(fmt::fmt PROPERTIES
|
|
IMPORTED_LOCATION "${fmt_LIBRARY}"
|
|
INTERFACE_COMPILE_OPTIONS "${PC_fmt_CFLAGS_OTHER}"
|
|
INTERFACE_INCLUDE_DIRECTORIES "${fmt_INCLUDE_DIR}"
|
|
)
|
|
endif()
|
|
|
|
mark_as_advanced(
|
|
fmt_INCLUDE_DIR
|
|
fmt_LIBRARY
|
|
)
|