diff options
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" - |