blob: 80fc9202b1b2ade4d4f54bc7e6271f650e0a07b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
cmake_minimum_required(VERSION 3.8.0)
project(distorm C)
set(CMAKE_C_STANDARD 99)
if(MSVC)
add_compile_options(/W3 /wd4005 /wd4996 /wd4018 -D_CRT_SECURE_NO_WARNINGS -DNOMINMAX)
endif()
include_directories(include src)
add_library(distorm
src/decoder.c
src/distorm.c
src/instructions.c
src/insts.c
src/mnemonics.c
src/operands.c
src/prefix.c
src/textdefs.c
)
if(BUILD_SHARED_LIBS)
target_compile_definitions(distorm PRIVATE -DDISTORM_DYNAMIC=1 -DSUPPORT_64BIT_OFFSET=1)
else()
target_compile_definitions(distorm PRIVATE -DDISTORM_STATIC=1 -DSUPPORT_64BIT_OFFSET=1)
endif()
install(
TARGETS distorm
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
if(NOT DISABLE_INSTALL_HEADERS)
install(FILES include/distorm.h include/mnemonics.h DESTINATION include)
endif()
|