2021-01-22 18:01:39 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
2023-07-27 00:53:04 +02:00
|
|
|
include(ImHexPlugin)
|
2023-10-16 23:45:46 +02:00
|
|
|
|
2023-10-29 19:43:40 +01:00
|
|
|
find_file(DEFAULT_MAGIC_FILE_PATH magic.mgc HINTS ${MAGIC_INCLUDE_DIRS}/../share/misc)
|
|
|
|
if (DEFAULT_MAGIC_FILE_PATH)
|
|
|
|
add_romfs_resource(${DEFAULT_MAGIC_FILE_PATH} auto_extract/magic/magic.mgc)
|
|
|
|
endif ()
|
|
|
|
|
2023-07-27 00:53:04 +02:00
|
|
|
add_imhex_plugin(
|
|
|
|
NAME
|
|
|
|
builtin
|
|
|
|
|
|
|
|
SOURCES
|
2021-01-22 18:01:39 +01:00
|
|
|
source/plugin_builtin.cpp
|
|
|
|
|
2023-05-15 11:30:24 +02:00
|
|
|
source/content/background_services.cpp
|
2021-01-22 18:01:39 +01:00
|
|
|
source/content/command_palette_commands.cpp
|
2023-07-16 23:46:41 +02:00
|
|
|
source/content/command_line_interface.cpp
|
2023-05-15 11:30:24 +02:00
|
|
|
source/content/communication_interface.cpp
|
2021-01-22 18:01:39 +01:00
|
|
|
source/content/data_inspector.cpp
|
2021-09-08 15:18:24 +02:00
|
|
|
source/content/pl_builtin_functions.cpp
|
2022-04-17 16:57:30 +02:00
|
|
|
source/content/pl_pragmas.cpp
|
2023-01-20 21:16:28 +01:00
|
|
|
source/content/pl_visualizers.cpp
|
2023-07-04 22:18:06 +02:00
|
|
|
source/content/pl_inline_visualizers.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/main_menu_items.cpp
|
2022-02-01 18:09:40 +01:00
|
|
|
source/content/welcome_screen.cpp
|
2022-05-27 20:42:07 +02:00
|
|
|
source/content/data_visualizers.cpp
|
|
|
|
source/content/events.cpp
|
2022-05-30 16:36:46 +02:00
|
|
|
source/content/hashes.cpp
|
2022-11-25 10:47:11 +01:00
|
|
|
source/content/global_actions.cpp
|
2022-12-29 19:26:00 +01:00
|
|
|
source/content/themes.cpp
|
2023-05-27 16:59:30 +02:00
|
|
|
source/content/recent.cpp
|
2023-06-06 21:35:13 +02:00
|
|
|
source/content/file_handlers.cpp
|
2023-06-21 20:07:36 +02:00
|
|
|
source/content/project.cpp
|
2023-08-06 21:33:15 +02:00
|
|
|
source/content/achievements.cpp
|
2023-10-29 19:43:40 +01:00
|
|
|
source/content/file_extraction.cpp
|
2023-11-22 08:26:31 +01:00
|
|
|
source/content/report_generators.cpp
|
2023-11-28 00:19:42 +01:00
|
|
|
source/content/init_tasks.cpp
|
2023-11-28 01:55:41 +01:00
|
|
|
source/content/fonts.cpp
|
2023-12-04 11:46:35 +01:00
|
|
|
source/content/disassemblers.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2023-12-01 13:54:12 +01:00
|
|
|
source/content/data_processor_nodes/basic_nodes.cpp
|
|
|
|
source/content/data_processor_nodes/control_nodes.cpp
|
|
|
|
source/content/data_processor_nodes/decode_nodes.cpp
|
|
|
|
source/content/data_processor_nodes/logic_nodes.cpp
|
|
|
|
source/content/data_processor_nodes/math_nodes.cpp
|
|
|
|
source/content/data_processor_nodes/other_nodes.cpp
|
|
|
|
source/content/data_processor_nodes/visual_nodes.cpp
|
2023-11-13 23:36:39 +01:00
|
|
|
|
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
|
2022-08-12 15:11:27 +02:00
|
|
|
source/content/providers/intel_hex_provider.cpp
|
|
|
|
source/content/providers/motorola_srec_provider.cpp
|
2022-10-21 12:01:28 +02:00
|
|
|
source/content/providers/memory_file_provider.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2023-11-12 01:22:01 +01:00
|
|
|
source/content/tools/ascii_table.cpp
|
|
|
|
source/content/tools/base_converter.cpp
|
|
|
|
source/content/tools/byte_swapper.cpp
|
|
|
|
source/content/tools/color_picker.cpp
|
|
|
|
source/content/tools/demangler.cpp
|
|
|
|
source/content/tools/euclidean_alg.cpp
|
|
|
|
source/content/tools/file_tool_shredder.cpp
|
|
|
|
source/content/tools/file_tool_splitter.cpp
|
|
|
|
source/content/tools/file_tool_combiner.cpp
|
|
|
|
source/content/tools/file_uploader.cpp
|
|
|
|
source/content/tools/graphing_calc.cpp
|
|
|
|
source/content/tools/ieee_decoder.cpp
|
|
|
|
source/content/tools/math_eval.cpp
|
|
|
|
source/content/tools/multiplication_decoder.cpp
|
|
|
|
source/content/tools/perms_calc.cpp
|
|
|
|
source/content/tools/regex_replacer.cpp
|
|
|
|
source/content/tools/tcp_client_server.cpp
|
|
|
|
source/content/tools/wiki_explainer.cpp
|
|
|
|
|
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
|
2022-03-04 19:06:29 +01:00
|
|
|
source/content/views/view_about.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
source/content/views/view_tools.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_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
|
2022-07-29 13:59:57 +02:00
|
|
|
source/content/views/view_find.cpp
|
2023-02-16 18:06:40 +01:00
|
|
|
source/content/views/view_theme_manager.cpp
|
2023-07-23 23:37:47 +02:00
|
|
|
source/content/views/view_logs.cpp
|
2023-08-06 21:33:15 +02:00
|
|
|
source/content/views/view_achievements.cpp
|
2023-12-02 11:09:32 +01:00
|
|
|
source/content/views/view_highlight_rules.cpp
|
2023-11-30 10:22:15 +01:00
|
|
|
source/content/views/view_yara.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2023-06-21 20:07:36 +02:00
|
|
|
source/content/helpers/notification.cpp
|
2022-11-08 21:43:22 +01:00
|
|
|
|
|
|
|
source/ui/hex_editor.cpp
|
|
|
|
source/ui/pattern_drawer.cpp
|
2022-09-29 10:33:39 +02:00
|
|
|
|
2023-07-27 00:53:04 +02:00
|
|
|
INCLUDES
|
|
|
|
include
|
2023-10-16 23:45:46 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
target_link_libraries(builtin PRIVATE setupapi)
|
|
|
|
endif ()
|