openbsd-ports/emulators/citra/patches/patch-src_tests_tests_cpp
bentley f38b9fdb20 Import citra-0.0.0.717.
Citra is an experimental open-source Nintendo 3DS emulator/debugger written in
C++. It is written with portability in mind, with builds actively maintained for
Windows, Linux and macOS. Citra only emulates a subset of 3DS hardware and
therefore is generally only useful for running/debugging homebrew applications.
Citra is even able to boot several commercial games.

From Thomas Frohwein. Thanks!
ok sthen@
2018-06-05 07:40:55 +00:00

17 lines
428 B
Plaintext

$OpenBSD: patch-src_tests_tests_cpp,v 1.1.1.1 2018/06/05 07:40:55 bentley Exp $
fix include path
Index: src/tests/tests.cpp
--- src/tests/tests.cpp.orig
+++ src/tests/tests.cpp
@@ -3,7 +3,7 @@
// Refer to the license.txt file included.
#define CATCH_CONFIG_MAIN
-#include <catch.hpp>
+#include <catch/catch.hpp>
// Catch provides the main function since we've given it the
// CATCH_CONFIG_MAIN preprocessor directive.