1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 16:37:47 +00:00

Ports: Adds Another World VM interpreter implementation

This commit is contained in:
Pavel Safar 2021-06-07 14:26:26 +02:00 committed by Linus Groh
parent b07b890ce4
commit c38f051bf7
3 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,15 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 38f6ba8..d56ca64 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -24,8 +24,7 @@ add_executable(raw
src/vm.cpp
)
-find_package(SDL2 REQUIRED)
-include_directories(${SDL2_INCLUDE_DIRS})
-target_link_libraries(raw ${SDL2_LIBRARIES})
+include_directories(${SDL2_INCLUDE_DIR})
+target_link_libraries(raw SDL2)
target_link_libraries(raw z)