From 46145fe7d5b1d9f0921121a088a3d61f968cc473 Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Mon, 20 Jun 2016 14:34:02 +0200 Subject: Adds a disasm program that decodes the first DOS instruction in a LE exe. --- disasm/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 disasm/CMakeLists.txt (limited to 'disasm/CMakeLists.txt') diff --git a/disasm/CMakeLists.txt b/disasm/CMakeLists.txt new file mode 100644 index 0000000..e433d10 --- /dev/null +++ b/disasm/CMakeLists.txt @@ -0,0 +1,16 @@ + +add_executable(disasm + disasm.cpp +) + +find_package(Boost COMPONENTS filesystem program_options system REQUIRED) + +target_link_libraries(disasm + PRIVATE le + PRIVATE ${Boost_LIBRARIES} + PRIVATE distorm3 +) + +target_include_directories(disasm + PRIVATE ${Boost_INCLUDE_DIRS} +) \ No newline at end of file -- cgit v1.2.3-70-g09d2