keystone-engine 0.1.0

Rust bindings for the Keystone Engine assembler library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Sample for Keystone assembler engine (www.keystone-engine.org).
# By Nguyen Anh Quynh, 2016

# For Linux, be sure to install Keystone before compiling this
# For Windows, be sure to copy keystone.dll or keystone.lib
# to this directory before compiling

cmake_minimum_required(VERSION 2.8)

project(sample)

# For Linux, be sure to install Keystone before compiling this
# For Windows, make sure to point to include dir of Keystone
include_directories("../../include")

add_executable(sample sample.c)

target_link_libraries(sample keystone)