From 1f2af0b19e98414dc6955d2ddc300ba04be78ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=A5IGA?= <164882787+Xphalnos@users.noreply.github.com> Date: Wed, 18 Jun 2025 19:45:14 +0200 Subject: [PATCH] Adding REM 3rd_Party (#18) --- .gitmodules | 3 +++ 3rd_Party/rem | 1 + CMakeLists.txt | 1 + 3 files changed, 5 insertions(+) create mode 160000 3rd_Party/rem diff --git a/.gitmodules b/.gitmodules index 9e9b454..d401869 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "3rd_Party/toml11"] path = 3rd_Party/toml11 url = https://github.com/ToruNiina/toml11.git +[submodule "3rd_Party/rem"] + path = 3rd_Party/rem + url = https://github.com/pound-emu/rem.git diff --git a/3rd_Party/rem b/3rd_Party/rem new file mode 160000 index 0000000..66aa17e --- /dev/null +++ b/3rd_Party/rem @@ -0,0 +1 @@ +Subproject commit 66aa17ee9e77c8e44bd7dd5d4ae6f1e05f1489fe diff --git a/CMakeLists.txt b/CMakeLists.txt index dc2fa17..82f14e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,7 @@ project(Pound) find_package(fmt 10.2.1 CONFIG) find_package(toml11 4.4.0 CONFIG) +include_directories(3rd_Party/rem/src) include_directories(core) add_subdirectory(3rd_Party)