2017-07-06 19:12:43 +08:00
|
|
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
2015-03-17 00:58:07 +08:00
|
|
|
include(GenerateExportHeader)
|
2017-07-03 09:21:24 +08:00
|
|
|
include(GNUInstallDirs)
|
2014-11-18 03:54:30 +08:00
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
project(Zydis VERSION 2.0)
|
2014-11-18 03:54:30 +08:00
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
# =============================================================================================== #
|
|
|
|
# Overridable options #
|
|
|
|
# =============================================================================================== #
|
|
|
|
|
|
|
|
# Features
|
2017-07-06 19:12:43 +08:00
|
|
|
option(ZYDIS_FEATURE_DECODER
|
|
|
|
"Enable instruction decoding and formtting functionality"
|
|
|
|
ON)
|
2017-10-17 23:30:36 +08:00
|
|
|
#option(ZYDIS_FEATURE_ENCODER
|
|
|
|
# "Enable instruction encoding functionality"
|
|
|
|
# OFF)
|
2017-06-22 00:25:53 +08:00
|
|
|
option(ZYDIS_FEATURE_EVEX
|
2017-07-02 14:40:41 +08:00
|
|
|
"Enable support for EVEX instructions"
|
2017-06-22 00:25:53 +08:00
|
|
|
ON)
|
|
|
|
option(ZYDIS_FEATURE_MVEX
|
2017-07-02 14:40:41 +08:00
|
|
|
"Enable support for MVEX instructions"
|
2017-06-22 00:25:53 +08:00
|
|
|
ON)
|
|
|
|
option(ZYDIS_FEATURE_FLAGS
|
2016-08-23 21:57:38 +08:00
|
|
|
"Include information about affected flags"
|
2017-06-22 00:25:53 +08:00
|
|
|
ON)
|
2017-01-10 13:01:04 +08:00
|
|
|
option(ZYDIS_FEATURE_CPUID
|
2016-08-23 21:57:38 +08:00
|
|
|
"Include information about CPUID feature-flags"
|
2017-04-09 01:36:16 +08:00
|
|
|
OFF)
|
2017-07-02 14:40:41 +08:00
|
|
|
|
|
|
|
# Build configuration
|
2017-09-06 23:05:05 +08:00
|
|
|
option(BUILD_SHARED_LIBS
|
|
|
|
"Build shared libraries"
|
|
|
|
OFF)
|
2017-07-02 14:40:41 +08:00
|
|
|
option(ZYDIS_BUILD_EXAMPLES
|
|
|
|
"Build examples"
|
|
|
|
ON)
|
|
|
|
option(ZYDIS_BUILD_TOOLS
|
|
|
|
"Build tools"
|
|
|
|
ON)
|
|
|
|
option(ZYDIS_DEV_MODE
|
|
|
|
"Enable developer mode (-Wall, -Werror, ...)"
|
|
|
|
OFF)
|
2014-11-18 03:54:30 +08:00
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
# =============================================================================================== #
|
|
|
|
# Developer mode #
|
|
|
|
# =============================================================================================== #
|
|
|
|
|
|
|
|
# If in developer mode, hack global compiler flags.
|
|
|
|
if (ZYDIS_DEV_MODE)
|
2017-07-03 09:37:38 +08:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
2016-06-20 07:33:29 +08:00
|
|
|
if ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR
|
2017-01-06 09:06:08 +08:00
|
|
|
"${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" OR
|
2017-04-10 04:54:53 +08:00
|
|
|
"${CMAKE_C_COMPILER_ID}" STREQUAL "AppleClang")
|
2017-07-02 14:40:41 +08:00
|
|
|
set(compiler_specific "-pedantic -Wextra -Werror")
|
2015-03-17 01:30:14 +08:00
|
|
|
elseif (MSVC)
|
2017-01-10 13:01:04 +08:00
|
|
|
set(compiler_specific "/WX /W4 /TC")
|
2014-11-18 03:54:30 +08:00
|
|
|
endif ()
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${compiler_specific}"
|
|
|
|
CACHE STRING "Flags used by the compiler during all build types." FORCE)
|
|
|
|
endif ()
|
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
# =============================================================================================== #
|
|
|
|
# Library configuration #
|
|
|
|
# =============================================================================================== #
|
2015-03-17 01:30:14 +08:00
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
add_library("Zydis")
|
2015-05-20 03:45:53 +08:00
|
|
|
|
2017-07-03 10:16:38 +08:00
|
|
|
target_include_directories("Zydis"
|
|
|
|
PUBLIC "include" ${PROJECT_BINARY_DIR}
|
|
|
|
PRIVATE "src")
|
2017-01-10 13:01:04 +08:00
|
|
|
target_compile_definitions("Zydis" PRIVATE "_CRT_SECURE_NO_WARNINGS" "ZYDIS_EXPORTS")
|
2017-01-06 09:06:08 +08:00
|
|
|
generate_export_header("Zydis" BASE_NAME "ZYDIS" EXPORT_FILE_NAME "ZydisExportConfig.h")
|
2015-02-06 09:28:51 +08:00
|
|
|
|
2017-07-06 19:12:43 +08:00
|
|
|
if (NOT ZYDIS_FEATURE_ENCODER AND NOT ZYDIS_FEATURE_DECODER)
|
2017-09-15 06:42:05 +08:00
|
|
|
message(
|
|
|
|
FATAL_ERROR
|
|
|
|
"\nIt's dangerous to go alone! Take at least one of these:\n"
|
|
|
|
"[ ] ZYDIS_FEATURE_ENCODER [ ] ZYDIS_FEATURE_DECODER"
|
|
|
|
)
|
2017-07-06 19:12:43 +08:00
|
|
|
endif ()
|
|
|
|
|
2017-06-22 00:25:53 +08:00
|
|
|
if (ZYDIS_FEATURE_EVEX)
|
2017-07-03 09:37:38 +08:00
|
|
|
target_compile_definitions("Zydis" PUBLIC "ZYDIS_ENABLE_FEATURE_EVEX")
|
2017-06-22 00:25:53 +08:00
|
|
|
endif ()
|
|
|
|
if (ZYDIS_FEATURE_MVEX)
|
2017-07-03 09:37:38 +08:00
|
|
|
target_compile_definitions("Zydis" PUBLIC "ZYDIS_ENABLE_FEATURE_MVEX")
|
2016-11-12 05:03:26 +08:00
|
|
|
endif ()
|
2017-06-22 00:25:53 +08:00
|
|
|
if (ZYDIS_FEATURE_FLAGS)
|
2017-07-03 09:37:38 +08:00
|
|
|
target_compile_definitions("Zydis" PUBLIC "ZYDIS_ENABLE_FEATURE_FLAGS")
|
2016-11-12 05:03:26 +08:00
|
|
|
endif ()
|
2017-01-10 13:01:04 +08:00
|
|
|
if (ZYDIS_FEATURE_CPUID)
|
2017-07-03 09:37:38 +08:00
|
|
|
target_compile_definitions("Zydis" PUBLIC "ZYDIS_ENABLE_FEATURE_CPUID")
|
2016-11-12 05:03:26 +08:00
|
|
|
endif ()
|
2017-07-06 15:52:14 +08:00
|
|
|
if (ZYDIS_FEATURE_DECODER)
|
|
|
|
target_compile_definitions("Zydis" PUBLIC "ZYDIS_ENABLE_FEATURE_DECODER")
|
|
|
|
endif ()
|
2017-10-17 23:30:36 +08:00
|
|
|
#if (ZYDIS_FEATURE_ENCODER)
|
|
|
|
# target_compile_definitions("Zydis" PUBLIC "ZYDIS_ENABLE_FEATURE_ENCODER")
|
|
|
|
#endif ()
|
2016-11-12 05:03:26 +08:00
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
target_sources("Zydis"
|
|
|
|
PUBLIC
|
2017-07-06 06:34:36 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/CommonTypes.h"
|
2017-07-02 14:40:41 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Defines.h"
|
2017-09-05 23:35:23 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/MetaInfo.h"
|
2017-07-02 14:40:41 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Mnemonic.h"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Register.h"
|
2017-07-06 06:34:36 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/SharedTypes.h"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Status.h"
|
2017-07-02 14:40:41 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Utils.h"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Zydis.h"
|
|
|
|
PRIVATE
|
2017-09-05 23:35:23 +08:00
|
|
|
"src/MetaInfo.c"
|
2017-07-02 14:40:41 +08:00
|
|
|
"src/Mnemonic.c"
|
|
|
|
"src/Register.c"
|
2017-07-06 15:52:14 +08:00
|
|
|
"src/SharedData.h"
|
2017-07-06 06:34:36 +08:00
|
|
|
"src/SharedData.c"
|
2017-07-02 14:40:41 +08:00
|
|
|
"src/Utils.c"
|
|
|
|
"src/Zydis.c")
|
|
|
|
|
2017-07-06 15:52:14 +08:00
|
|
|
if (ZYDIS_FEATURE_DECODER)
|
|
|
|
target_sources("Zydis"
|
|
|
|
PUBLIC
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Decoder.h"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/DecoderTypes.h"
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Formatter.h"
|
|
|
|
PRIVATE
|
|
|
|
"src/DecoderData.h"
|
2017-09-14 06:59:23 +08:00
|
|
|
"src/FormatHelper.h"
|
2017-07-06 15:52:14 +08:00
|
|
|
"src/Decoder.c"
|
|
|
|
"src/DecoderData.c"
|
2017-09-14 06:59:23 +08:00
|
|
|
"src/Formatter.c"
|
|
|
|
"src/FormatHelper.c")
|
2017-07-02 14:40:41 +08:00
|
|
|
endif ()
|
|
|
|
|
2017-10-17 23:30:36 +08:00
|
|
|
#if (ZYDIS_FEATURE_ENCODER)
|
|
|
|
# target_sources("Zydis"
|
|
|
|
# PUBLIC
|
|
|
|
# "${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Encoder.h"
|
|
|
|
# PRIVATE
|
|
|
|
# "src/EncoderData.h"
|
|
|
|
# "src/Encoder.c"
|
|
|
|
# "src/EncoderData.c")
|
|
|
|
#endif ()
|
2017-07-02 14:40:41 +08:00
|
|
|
|
2017-07-06 15:52:14 +08:00
|
|
|
if (BUILD_SHARED_LIBS AND WIN32)
|
|
|
|
target_sources("Zydis" PRIVATE "src/VersionInfo.rc")
|
|
|
|
endif ()
|
|
|
|
|
2017-07-03 09:21:24 +08:00
|
|
|
# TODO: Install CMake config.
|
|
|
|
install(TARGETS "Zydis"
|
|
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
|
|
install(DIRECTORY "include" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
# =============================================================================================== #
|
|
|
|
# Examples #
|
|
|
|
# =============================================================================================== #
|
|
|
|
|
2017-01-10 13:01:04 +08:00
|
|
|
if (ZYDIS_BUILD_EXAMPLES)
|
2017-09-15 06:42:05 +08:00
|
|
|
if (ZYDIS_FEATURE_DECODER)
|
|
|
|
add_executable("FormatterHooks"
|
|
|
|
"examples/FormatterHooks.c"
|
|
|
|
"examples/FormatHelper.h")
|
|
|
|
target_link_libraries("FormatterHooks" "Zydis")
|
|
|
|
set_target_properties("FormatterHooks" PROPERTIES FOLDER "Examples/Formatter")
|
|
|
|
target_compile_definitions("FormatterHooks" PRIVATE "_CRT_SECURE_NO_WARNINGS")
|
2017-07-25 03:59:54 +08:00
|
|
|
|
|
|
|
add_executable("ZydisFuzzIn" "examples/ZydisFuzzIn.c")
|
|
|
|
target_link_libraries("ZydisFuzzIn" "Zydis")
|
|
|
|
set_target_properties("FormatterHooks" PROPERTIES FOLDER "Examples")
|
|
|
|
target_compile_definitions("ZydisFuzzIn" PRIVATE "_CRT_SECURE_NO_WARNINGS")
|
|
|
|
|
2017-09-15 06:42:05 +08:00
|
|
|
add_executable("ZydisPerfTest" "examples/ZydisPerfTest.c")
|
|
|
|
target_link_libraries("ZydisPerfTest" "Zydis")
|
|
|
|
set_target_properties("FormatterHooks" PROPERTIES FOLDER "Examples")
|
|
|
|
target_compile_definitions("ZydisPerfTest" PRIVATE "_CRT_SECURE_NO_WARNINGS")
|
|
|
|
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
|
|
target_compile_definitions("ZydisPerfTest" PRIVATE "_GNU_SOURCE")
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
target_link_libraries("ZydisPerfTest" Threads::Threads)
|
2017-07-25 03:59:54 +08:00
|
|
|
endif ()
|
2017-09-15 06:42:05 +08:00
|
|
|
endif ()
|
2014-11-18 03:54:30 +08:00
|
|
|
endif ()
|
|
|
|
|
2017-07-02 14:40:41 +08:00
|
|
|
# =============================================================================================== #
|
|
|
|
# Tools #
|
|
|
|
# =============================================================================================== #
|
|
|
|
|
2017-01-10 13:01:04 +08:00
|
|
|
if (ZYDIS_BUILD_TOOLS)
|
2017-09-15 06:42:05 +08:00
|
|
|
if (ZYDIS_FEATURE_DECODER)
|
|
|
|
add_executable("ZydisDisasm" "tools/ZydisDisasm.c")
|
|
|
|
target_link_libraries("ZydisDisasm" "Zydis")
|
|
|
|
set_target_properties ("ZydisDisasm" PROPERTIES FOLDER "Tools")
|
|
|
|
target_compile_definitions("ZydisDisasm" PRIVATE "_CRT_SECURE_NO_WARNINGS")
|
2017-07-06 15:52:14 +08:00
|
|
|
|
2017-07-13 01:54:42 +08:00
|
|
|
add_executable("ZydisInfo" "tools/ZydisInfo.c")
|
|
|
|
target_link_libraries("ZydisInfo" "Zydis")
|
|
|
|
set_target_properties ("ZydisInfo" PROPERTIES FOLDER "Tools")
|
|
|
|
target_compile_definitions("ZydisInfo" PRIVATE "_CRT_SECURE_NO_WARNINGS")
|
2017-09-15 06:42:05 +08:00
|
|
|
endif ()
|
2016-05-26 03:25:48 +08:00
|
|
|
endif ()
|