2020-11-10 15:26:38 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2020-12-18 21:44:13 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
# Updating the version here will update it throughout ImHex as well
|
2021-05-24 19:09:53 +02:00
|
|
|
set(IMHEX_VERSION "1.8.1")
|
2021-04-17 15:46:26 +02:00
|
|
|
project(imhex VERSION ${IMHEX_VERSION})
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2021-01-22 23:33:13 +01:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
|
2021-01-22 23:27:01 +01:00
|
|
|
include("${CMAKE_SOURCE_DIR}/cmake/build_helpers.cmake")
|
|
|
|
setDefaultBuiltTypeIfUnset()
|
2020-12-29 22:50:11 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
# List plugin names here. Project name must match folder name
|
|
|
|
set(PLUGINS
|
|
|
|
builtin
|
2021-05-29 21:52:18 +02:00
|
|
|
windows
|
2021-02-19 17:37:02 +01:00
|
|
|
# example
|
2021-01-22 23:27:01 +01:00
|
|
|
)
|
2020-12-28 20:03:50 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
# List extra magic databases to compile here
|
|
|
|
set(MAGICDBS
|
2021-01-25 15:09:30 +01:00
|
|
|
magic_dbs/nintendo_magic
|
2021-01-22 23:27:01 +01:00
|
|
|
)
|
2020-12-18 21:44:13 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
findLibraries()
|
2020-12-05 12:46:50 +01:00
|
|
|
|
2021-01-27 00:00:20 +01:00
|
|
|
detectOS()
|
|
|
|
detectArch()
|
|
|
|
|
2021-05-23 12:16:14 +02:00
|
|
|
if (NOT USE_SYSTEM_LLVM)
|
|
|
|
add_subdirectory(external/llvm)
|
|
|
|
else()
|
|
|
|
find_package(LLVM REQUIRED Demangle)
|
|
|
|
endif()
|
|
|
|
if (NOT USE_SYSTEM_YARA)
|
|
|
|
add_subdirectory(external/yara)
|
|
|
|
else()
|
2021-05-23 14:16:38 +02:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(YARA REQUIRED IMPORTED_TARGET yara)
|
2021-05-23 12:16:14 +02:00
|
|
|
endif()
|
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
# Add bundled dependencies
|
2021-01-22 22:44:45 +01:00
|
|
|
add_subdirectory(plugins/libimhex)
|
2021-01-12 16:50:15 +01:00
|
|
|
|
2020-12-21 12:38:50 +01:00
|
|
|
# Add include directories
|
2021-02-02 23:11:23 +01:00
|
|
|
include_directories(include ${MBEDTLS_INCLUDE_DIRS} ${CAPSTONE_INCLUDE_DIRS} ${MAGIC_INCLUDE_DIRS} ${Python_INCLUDE_DIRS})
|
2021-05-23 12:16:14 +02:00
|
|
|
if (USE_SYSTEM_LLVM)
|
|
|
|
include_directories(include ${LLVM_INCLUDE_DIRS})
|
|
|
|
endif()
|
|
|
|
if (USE_SYSTEM_YARA)
|
|
|
|
include_directories(include ${YARA_INCLUDE_DIRS})
|
|
|
|
endif()
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
addVersionDefines()
|
|
|
|
configurePackageCreation()
|
2020-12-28 20:03:50 +01:00
|
|
|
|
2020-12-28 23:37:51 +01:00
|
|
|
add_executable(imhex ${application_type}
|
2020-11-10 15:26:38 +01:00
|
|
|
source/main.cpp
|
|
|
|
source/window.cpp
|
2020-11-28 21:55:52 +01:00
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
source/init/splash_window.cpp
|
|
|
|
source/init/tasks.cpp
|
|
|
|
|
2020-11-28 21:55:52 +01:00
|
|
|
source/helpers/patches.cpp
|
2020-11-30 00:03:12 +01:00
|
|
|
source/helpers/project_file_handler.cpp
|
2020-12-01 02:21:40 +01:00
|
|
|
source/helpers/loader_script_handler.cpp
|
2021-04-20 21:46:48 +02:00
|
|
|
source/helpers/plugin_manager.cpp
|
2021-02-14 01:11:55 +01:00
|
|
|
source/helpers/encoding_file.cpp
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-27 09:09:48 +01:00
|
|
|
source/providers/file_provider.cpp
|
2020-11-11 09:18:35 +01:00
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
source/views/view_hexeditor.cpp
|
|
|
|
source/views/view_pattern.cpp
|
|
|
|
source/views/view_pattern_data.cpp
|
2020-11-11 00:13:09 +01:00
|
|
|
source/views/view_hashes.cpp
|
2020-11-12 09:38:52 +01:00
|
|
|
source/views/view_information.cpp
|
2020-11-14 21:16:03 +01:00
|
|
|
source/views/view_help.cpp
|
2020-11-15 00:46:38 +01:00
|
|
|
source/views/view_tools.cpp
|
2020-11-15 01:42:43 +01:00
|
|
|
source/views/view_strings.cpp
|
2020-11-21 00:12:58 +01:00
|
|
|
source/views/view_data_inspector.cpp
|
2020-11-22 23:07:50 +01:00
|
|
|
source/views/view_disassembler.cpp
|
2020-11-28 00:33:26 +01:00
|
|
|
source/views/view_bookmarks.cpp
|
2020-11-29 02:06:41 +01:00
|
|
|
source/views/view_patches.cpp
|
2020-12-16 22:43:07 +01:00
|
|
|
source/views/view_command_palette.cpp
|
2021-01-11 20:31:40 +01:00
|
|
|
source/views/view_settings.cpp
|
2021-01-30 22:39:06 +01:00
|
|
|
source/views/view_data_processor.cpp
|
2021-02-26 13:35:19 +01:00
|
|
|
source/views/view_yara.cpp
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-12-28 20:03:50 +01:00
|
|
|
${imhex_icon}
|
2020-11-10 15:26:38 +01:00
|
|
|
)
|
|
|
|
|
2020-12-21 11:24:27 +01:00
|
|
|
set_target_properties(imhex PROPERTIES CXX_VISIBILITY_PRESET hidden)
|
2021-02-07 22:57:34 +01:00
|
|
|
target_link_directories(imhex PRIVATE ${CAPSTONE_LIBRARY_DIRS} ${MAGIC_LIBRARY_DIRS})
|
2020-12-18 19:40:14 +01:00
|
|
|
|
2021-01-06 19:19:01 +01:00
|
|
|
if (WIN32)
|
2021-04-18 20:24:42 +02:00
|
|
|
target_link_libraries(imhex magic ${CMAKE_DL_LIBS} capstone LLVMDemangle libimhex ${Python_LIBRARIES} wsock32 ws2_32 libyara)
|
2021-04-12 20:36:16 +02:00
|
|
|
else ()
|
2021-02-26 13:35:19 +01:00
|
|
|
target_link_libraries(imhex magic ${CMAKE_DL_LIBS} capstone LLVMDemangle libimhex ${Python_LIBRARIES} dl pthread libyara)
|
2021-04-12 20:36:16 +02:00
|
|
|
endif ()
|
2020-12-09 19:49:56 +01:00
|
|
|
|
2021-02-26 13:35:19 +01:00
|
|
|
createPackage()
|