License code using the GPL-2.0+

Using mednafen's license since I ported some code straight from there.
This commit is contained in:
Lionel Flandrin 2015-10-13 23:05:06 +02:00
parent 427856c0bf
commit d758c7695e
3 changed files with 41 additions and 0 deletions

View file

@ -4,6 +4,14 @@ name = "rustation"
version = "0.0.1"
authors = ["Lionel Flandrin <lionel.flandrin@gmail.com>"]
description = "A PlayStation emulator"
homepage = "https://github.com/simias/rustation"
repository = "https://github.com/simias/rustation"
documentation = "https://github.com/simias/rustation/wiki"
readme = "README.md"
license = "GPL-2.0+"
keywords = ["emulator", "playstation"]
[dependencies]
libc = "0.1.6"

16
LICENSE Normal file
View file

@ -0,0 +1,16 @@
Rustation - a PlayStation emulator
Copyright (C) 2015 Lionel Flandrin
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

View file

@ -1,3 +1,20 @@
// Rustation - a PlayStation emulator
// Copyright (C) 2015 Lionel Flandrin
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
extern crate sdl2;
extern crate gl;
extern crate libc;