diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 99bcb1c5..cb207313 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -9,6 +9,10 @@ if(WOMBAT_BUILD_TYPE STREQUAL "GBA") gba/dirt.s ) elseif(WOMBAT_BUILD_TYPE STREQUAL "Native") + set( + CPP + qt/gfx.cpp + ) endif() add_library( diff --git a/src/core/qt/gfx.cpp b/src/core/qt/gfx.cpp new file mode 100644 index 00000000..5aad0858 --- /dev/null +++ b/src/core/qt/gfx.cpp @@ -0,0 +1,19 @@ +/* + * Copyright 2016-2017 gtalent2@gmail.com + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include + +namespace nostalgia { +namespace core { + +ox::std::Error initGfx() { + return 0; +} + +} +}