From d4c9399454e158211d15d9492bc3d5579a22759f Mon Sep 17 00:00:00 2001 From: Simone Coco Date: Wed, 21 Sep 2022 11:33:23 +0200 Subject: [PATCH] remove capstone submodule --- external/capstone | 1 - src/n64/CMakeLists.txt | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 160000 external/capstone 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 . ..