2021-01-22 18:01:39 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2021-01-22 22:44:45 +01:00
|
|
|
# Change this to the name of your plugin #
|
2021-01-22 18:01:39 +01:00
|
|
|
project(builtin)
|
|
|
|
|
2021-01-22 22:44:45 +01:00
|
|
|
# Add your source files here #
|
|
|
|
add_library(${PROJECT_NAME} SHARED
|
2021-01-22 18:01:39 +01:00
|
|
|
source/plugin_builtin.cpp
|
|
|
|
|
|
|
|
source/content/command_palette_commands.cpp
|
|
|
|
source/content/data_inspector.cpp
|
2021-09-08 15:18:24 +02:00
|
|
|
source/content/pl_builtin_functions.cpp
|
2021-01-22 18:01:39 +01:00
|
|
|
source/content/settings_entries.cpp
|
|
|
|
source/content/tools_entries.cpp
|
2021-01-30 22:39:06 +01:00
|
|
|
source/content/data_processor_nodes.cpp
|
2021-08-21 00:52:11 +02:00
|
|
|
source/content/ui_items.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
source/content/providers.cpp
|
|
|
|
source/content/views.cpp
|
2022-01-13 00:27:31 +01:00
|
|
|
source/content/data_formatters.cpp
|
2022-01-18 00:10:10 +01:00
|
|
|
source/content/layouts.cpp
|
|
|
|
source/content/main_menu_items.cpp
|
2022-02-01 18:09:40 +01:00
|
|
|
source/content/welcome_screen.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
|
|
|
source/content/providers/file_provider.cpp
|
|
|
|
source/content/providers/gdb_provider.cpp
|
2021-12-12 00:42:12 +01:00
|
|
|
source/content/providers/disk_provider.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2022-02-06 21:02:31 +01:00
|
|
|
source/content/views/view_hex_editor.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
source/content/views/view_pattern_editor.cpp
|
|
|
|
source/content/views/view_pattern_data.cpp
|
|
|
|
source/content/views/view_hashes.cpp
|
|
|
|
source/content/views/view_information.cpp
|
|
|
|
source/content/views/view_help.cpp
|
|
|
|
source/content/views/view_tools.cpp
|
|
|
|
source/content/views/view_strings.cpp
|
|
|
|
source/content/views/view_data_inspector.cpp
|
|
|
|
source/content/views/view_disassembler.cpp
|
|
|
|
source/content/views/view_bookmarks.cpp
|
|
|
|
source/content/views/view_patches.cpp
|
|
|
|
source/content/views/view_command_palette.cpp
|
|
|
|
source/content/views/view_settings.cpp
|
|
|
|
source/content/views/view_data_processor.cpp
|
|
|
|
source/content/views/view_yara.cpp
|
|
|
|
source/content/views/view_constants.cpp
|
|
|
|
source/content/views/view_store.cpp
|
|
|
|
source/content/views/view_diff.cpp
|
2021-12-12 00:41:44 +01:00
|
|
|
source/content/views/view_provider_settings.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2021-01-22 18:01:39 +01:00
|
|
|
|
|
|
|
source/math_evaluator.cpp
|
2021-02-11 00:35:30 +01:00
|
|
|
|
|
|
|
source/lang/en_US.cpp
|
2021-03-03 22:26:17 +01:00
|
|
|
source/lang/de_DE.cpp
|
2021-03-04 13:52:35 +01:00
|
|
|
source/lang/it_IT.cpp
|
2021-09-20 18:41:22 +02:00
|
|
|
source/lang/zh_CN.cpp
|
2022-02-07 15:42:38 +01:00
|
|
|
source/lang/ja_JP.cpp
|
2021-01-22 18:01:39 +01:00
|
|
|
)
|
|
|
|
|
2021-01-22 22:44:45 +01:00
|
|
|
# Add additional include directories here #
|
|
|
|
target_include_directories(${PROJECT_NAME} PRIVATE include)
|
|
|
|
|
2021-12-14 20:16:59 +01:00
|
|
|
# Add additional libraries here #
|
2021-12-16 12:37:22 +01:00
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE libimhex LLVMDemangle)
|
2021-01-22 22:44:45 +01:00
|
|
|
|
|
|
|
# ---- No need to change anything from here downwards unless you know what you're doing ---- #
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2021-02-07 13:40:47 +01:00
|
|
|
set(CMAKE_SHARED_LIBRARY_PREFIX "")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_SUFFIX ".hexplug")
|
2021-01-22 22:44:45 +01:00
|
|
|
|
|
|
|
if (WIN32)
|
2021-04-18 20:24:42 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--allow-multiple-definition -fvisibility=hidden")
|
2021-01-22 22:44:45 +01:00
|
|
|
endif()
|
|
|
|
|
2022-02-02 17:19:50 +01:00
|
|
|
add_compile_definitions(IMHEX_PROJECT_NAME="${PROJECT_NAME}")
|
2022-02-07 15:42:38 +01:00
|
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|