summaryrefslogtreecommitdiff
path: root/emulate/CMakeLists.txt
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-09-19 17:38:23 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-10-04 22:18:23 +0200
commitc29ae7a65c636b8d1fa37c6589278dcdee97658f (patch)
treea0ad6583a1f954a179349e0b27d58d7c945c59b5 /emulate/CMakeLists.txt
parentabd5cfdd4a6c8e9979b2deb3c48304fb3d63a44c (diff)
downloadopenwar-c29ae7a65c636b8d1fa37c6589278dcdee97658f.tar.gz
openwar-c29ae7a65c636b8d1fa37c6589278dcdee97658f.tar.bz2
openwar-c29ae7a65c636b8d1fa37c6589278dcdee97658f.zip
Started working on a x86 emulator.
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