diff options
author | Bastien Bouclet | 2019-04-27 12:22:35 +0200 |
---|---|---|
committer | Bastien Bouclet | 2019-05-05 08:52:12 +0200 |
commit | 1d0d842e2aceeb69ab08b4e65e01b258f57b116f (patch) | |
tree | 57abd795759ae29c3f08b620ff23c5486b4dbcd1 /backends/platform/sdl | |
parent | a5d93d933ab65d5a7efcc88926ce116618f06fcd (diff) | |
download | scummvm-rg350-1d0d842e2aceeb69ab08b4e65e01b258f57b116f.tar.gz scummvm-rg350-1d0d842e2aceeb69ab08b4e65e01b258f57b116f.tar.bz2 scummvm-rg350-1d0d842e2aceeb69ab08b4e65e01b258f57b116f.zip |
BUILD: Add the licence file for the Source Code Pro font
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/macosx/appmenu_osx.mm | 6 | ||||
-rw-r--r-- | backends/platform/sdl/win32/win32.mk | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/backends/platform/sdl/macosx/appmenu_osx.mm b/backends/platform/sdl/macosx/appmenu_osx.mm index 1d5ab12792..38ce8c49a2 100644 --- a/backends/platform/sdl/macosx/appmenu_osx.mm +++ b/backends/platform/sdl/macosx/appmenu_osx.mm @@ -87,6 +87,7 @@ static void openFromBundle(NSString *file) { - (void) openLicenseGPL; - (void) openLicenseLGPL; - (void) openLicenseFreefont; +- (void) openLicenseOFL; - (void) openLicenseBSD; - (void) openNews; - (void) openUserManual; @@ -110,6 +111,10 @@ static void openFromBundle(NSString *file) { openFromBundle(@"COPYING-FREEFONT"); } +- (void)openLicenseOFL { + openFromBundle(@"COPYING-OFL"); +} + - (void)openLicenseBSD { openFromBundle(@"COPYING-BSD"); } @@ -216,6 +221,7 @@ void replaceApplicationMenuItems() { addMenuItem(_("GPL License"), stringEncoding, delegate, @selector(openLicenseGPL), @"", helpMenu); addMenuItem(_("LGPL License"), stringEncoding, delegate, @selector(openLicenseLGPL), @"", helpMenu); addMenuItem(_("Freefont License"), stringEncoding, delegate, @selector(openLicenseFreefont), @"", helpMenu); + addMenuItem(_("OFL License"), stringEncoding, delegate, @selector(openLicenseOFL), @"", helpMenu); addMenuItem(_("BSD License"), stringEncoding, delegate, @selector(openLicenseBSD), @"", helpMenu); diff --git a/backends/platform/sdl/win32/win32.mk b/backends/platform/sdl/win32/win32.mk index 227878eaf0..32f60e10f9 100644 --- a/backends/platform/sdl/win32/win32.mk +++ b/backends/platform/sdl/win32/win32.mk @@ -23,6 +23,7 @@ win32dist: all cp $(srcdir)/COPYING.BSD $(WIN32PATH)/COPYING.BSD.txt cp $(srcdir)/COPYING.LGPL $(WIN32PATH)/COPYING.LGPL.txt cp $(srcdir)/COPYING.FREEFONT $(WIN32PATH)/COPYING.FREEFONT.txt + cp $(srcdir)/COPYING.OFL $(WIN32PATH)/COPYING.OFL.txt cp $(srcdir)/COPYRIGHT $(WIN32PATH)/COPYRIGHT.txt cp $(srcdir)/doc/cz/PrectiMe $(WIN32PATH)/doc/cz/PrectiMe.txt cp $(srcdir)/doc/de/NEUES $(WIN32PATH)/doc/de/NEUES.txt |