2014-04-08 20:25:53 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-04-08 20:25:53 -04:00
|
|
|
#pragma once
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-04-08 23:18:23 -04:00
|
|
|
#include <string>
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-04-08 23:18:23 -04:00
|
|
|
#include "common/common.h"
|
|
|
|
|
|
|
|
#define APP_NAME std::string("citra")
|
|
|
|
#define APP_VERSION std::string("0.01-") + std::string(g_scm_rev_str)
|
|
|
|
#define APP_TITLE (APP_NAME + " " + APP_VERSION)
|
|
|
|
#define COPYRIGHT "Copyright (C) 2014 Citra Emulator"
|
2013-08-29 23:35:09 -04:00
|
|
|
|