diff --git a/external/capstone b/external/capstone deleted file mode 160000 index fee83fcc..00000000 --- a/external/capstone +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fee83fcc1ad096c22d4f2066ccb58ad1a76a9886 diff --git a/src/n64/CMakeLists.txt b/src/n64/CMakeLists.txt index 4bb07903..570817f1 100644 --- a/src/n64/CMakeLists.txt +++ b/src/n64/CMakeLists.txt @@ -3,12 +3,15 @@ project(n64) add_subdirectory(core) +find_package(fmt REQUIRED) +find_package(SDL2 REQUIRED) + add_library(n64 Core.cpp Core.hpp memory_regions.hpp) -target_link_libraries(n64 PUBLIC core) +target_link_libraries(n64 PUBLIC core fmt SDL2main SDL2) target_include_directories(n64 PUBLIC . ..