summaryrefslogtreecommitdiff
path: root/emulate/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'emulate/CMakeLists.txt')
-rw-r--r--emulate/CMakeLists.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/emulate/CMakeLists.txt b/emulate/CMakeLists.txt
new file mode 100644
index 0000000..824d8c3
--- /dev/null
+++ b/emulate/CMakeLists.txt
@@ -0,0 +1,18 @@
+
+add_executable(emulate
+ emulate.cpp
+ cpustate.hpp
+ emulator.hpp emulator.cpp
+)
+
+find_package(Boost COMPONENTS filesystem program_options system REQUIRED)
+
+find_package(distorm3 REQUIRED CONFIG)
+
+target_link_libraries(emulate
+ PRIVATE Boost::program_options
+ PRIVATE Boost::system
+ PRIVATE Boost::filesystem
+ PRIVATE distorm3
+ PRIVATE le
+) \ No newline at end of file