diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-11 02:10:18 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-11 02:10:18 +0200 |
commit | 95f237a086ec4a9c95f673c96dde72e87eb616c2 (patch) | |
tree | 02567879b41ecf28a59291f28b1ae138cc36a762 /src/citra | |
parent | added initial modules for setting up SysCall HLE (diff) | |
parent | removed scm_rev.h from version control (diff) | |
download | yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.tar yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.tar.gz yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.tar.bz2 yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.tar.lz yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.tar.xz yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.tar.zst yuzu-95f237a086ec4a9c95f673c96dde72e87eb616c2.zip |
Diffstat (limited to 'src/citra')
-rw-r--r-- | src/citra/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/citra/citra.h | 9 |
2 files changed, 2 insertions, 11 deletions
diff --git a/src/citra/CMakeLists.txt b/src/citra/CMakeLists.txt index 3a76b5045..c6913df57 100644 --- a/src/citra/CMakeLists.txt +++ b/src/citra/CMakeLists.txt @@ -1,5 +1,5 @@ -set(SRCS src/citra.cpp - src/emuwindow/emuwindow_glfw.cpp) +set(SRCS citra.cpp + emu_window/emu_window_glfw.cpp) # NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable) if (NOT X11_xf86vmode_LIB) diff --git a/src/citra/citra.h b/src/citra/citra.h index b9254c5da..b3b78a2dc 100644 --- a/src/citra/citra.h +++ b/src/citra/citra.h @@ -4,12 +4,3 @@ #pragma once -#include <string> - -#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" - |