Browse Source

Fixed lldb_test on MacOS

merge-requests/413/head
eidheim 4 years ago
parent
commit
ec1d82e59b
  1. 4
      tests/lldb_test.cpp

4
tests/lldb_test.cpp

@ -2,9 +2,13 @@
#include <atomic> #include <atomic>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#include <glib.h> #include <glib.h>
#include <gtksourceviewmm.h>
#include <thread> #include <thread>
int main() { int main() {
auto app = Gtk::Application::create();
Gsv::init();
auto build_path = boost::filesystem::canonical(JUCI_BUILD_PATH); auto build_path = boost::filesystem::canonical(JUCI_BUILD_PATH);
auto exec_path = build_path / "tests" / "lldb_test_files" / "lldb_test_executable"; auto exec_path = build_path / "tests" / "lldb_test_files" / "lldb_test_executable";
g_assert(boost::filesystem::exists(exec_path)); g_assert(boost::filesystem::exists(exec_path));

Loading…
Cancel
Save