From ec1d82e59bd57b2ca86c790c5fb002c33889f7b0 Mon Sep 17 00:00:00 2001 From: eidheim Date: Fri, 18 Feb 2022 16:20:06 +0100 Subject: [PATCH] Fixed lldb_test on MacOS --- tests/lldb_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/lldb_test.cpp b/tests/lldb_test.cpp index 213e277..b7502af 100644 --- a/tests/lldb_test.cpp +++ b/tests/lldb_test.cpp @@ -2,9 +2,13 @@ #include #include #include +#include #include int main() { + auto app = Gtk::Application::create(); + Gsv::init(); + auto build_path = boost::filesystem::canonical(JUCI_BUILD_PATH); auto exec_path = build_path / "tests" / "lldb_test_files" / "lldb_test_executable"; g_assert(boost::filesystem::exists(exec_path));