Sha256: dde45f9874723b66d846fdd6106bfc791db7212853dea2d406d2ef800d1da8b1

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

#include <Gosu/Version.hpp>
#include <Gosu/Platform.hpp>
#include <string>

const std::string Gosu::VERSION = std::to_string(GOSU_MAJOR_VERSION) + '.' +
                                  std::to_string(GOSU_MINOR_VERSION) + '.' +
                                  std::to_string(GOSU_POINT_VERSION);

const std::string Gosu::LICENSES =
    "This software may utilize code from the following third-party libraries:\n"
    "\n"
    "Gosu, https://www.libgosu.org, MIT License, https://opensource.org/licenses/MIT\n"
    "SDL 2, https://www.libsdl.org, MIT License, https://opensource.org/licenses/MIT\n"
#if defined(GOSU_IS_WIN) || defined(GOSU_IS_X)
    "libsndfile, http://www.mega-nerd.com/libsndfile, GNU LGPL 3, "
        "https://www.gnu.org/copyleft/lesser.html\n"
    "mpg123, https://mpg123.de, GNU LGPL 3, "
        "https://www.gnu.org/copyleft/lesser.html\n"
#endif
#if defined(GOSU_IS_WIN)
    "OpenAL Soft, http://kcat.strangesoft.net/openal.html, GNU LGPL 2, "
        "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html\n"
#endif
    ;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gosu-0.12.1 src/Version.cpp
gosu-0.12.0 src/Version.cpp