From 99dc73441ccbeed7cdbf1920ae23e619e008f990 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Thu, 14 Nov 2019 23:33:55 -0800 Subject: [PATCH] Update project externals --- CMakeLists.txt | 2 +- Source/CommonCore/VMFactory.cpp | 1 + Source/Tools/Debugger/Main.cpp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ada594224..1517227f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ set (CMAKE_LINKER_FLAGS_RELEASE "${CMAKE_LINKER_FLAGS_RELEASE} -fomit-frame-poin add_definitions(-Wno-trigraphs) # add_subdirectory(External/SonicUtils/) -include_directories(External/SonicUtils/) +include_directories(External/SonicUtils/include/SonicUtils) add_subdirectory(External/cpp-optparse/) include_directories(External/cpp-optparse/) diff --git a/Source/CommonCore/VMFactory.cpp b/Source/CommonCore/VMFactory.cpp index 0875240e8..758d9ff64 100644 --- a/Source/CommonCore/VMFactory.cpp +++ b/Source/CommonCore/VMFactory.cpp @@ -1,4 +1,5 @@ #include "VM.h" +#include "LogManager.h" #include #include diff --git a/Source/Tools/Debugger/Main.cpp b/Source/Tools/Debugger/Main.cpp index 2c9a13f11..135c5693b 100644 --- a/Source/Tools/Debugger/Main.cpp +++ b/Source/Tools/Debugger/Main.cpp @@ -9,12 +9,12 @@ #include "DebuggerState.h" #include "LogManager.h" -#include "Event.h" #include #include #include #include #include +#include #include #include