Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10039 from OatmealDome/spdx-leftovers
Fix some missed items from SPDX transition
  • Loading branch information
lioncash committed Aug 18, 2021
2 parents 6863b7a + 5c5c3b8 commit 33154de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion Source/Core/Core/Config/UISettings.cpp
@@ -1,6 +1,5 @@
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
// Refer to the license.txt file included

#include "Core/Config/UISettings.h"

Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/AboutDialog.cpp
Expand Up @@ -41,7 +41,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent)
</p>
<p>
<a href='https://github.com/dolphin-emu/dolphin/blob/master/license.txt'>%LICENSE%</a> |
<a href='https://github.com/dolphin-emu/dolphin/blob/master/COPYING'>%LICENSE%</a> |
<a href='https://github.com/dolphin-emu/dolphin/graphs/contributors'>%AUTHORS%</a> |
<a href='https://forums.dolphin-emu.org/'>%SUPPORT%</a>
)")
Expand Down
9 changes: 7 additions & 2 deletions Source/Core/DolphinQt/CMakeLists.txt
Expand Up @@ -375,9 +375,14 @@ if(WIN32)
COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/Data/Sys" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Sys"
)

# Copy license.txt
# Copy COPYING
add_custom_command(TARGET dolphin-emu POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/license.txt" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/license.txt"
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/COPYING" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/COPYING"
)

# Copy Licenses dir
add_custom_command(TARGET dolphin-emu POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/LICENSES" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Licenses"
)

# Copy qt.conf
Expand Down

0 comments on commit 33154de

Please sign in to comment.