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)
|
2023-12-28 19:24:56 +01:00
|
|
|
add_romfs_resource(${DEFAULT_MAGIC_FILE_PATH} always_auto_extract/magic/magic.mgc)
|
2023-10-29 19:43:40 +01:00
|
|
|
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
|
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-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-11 15:54:22 +01:00
|
|
|
source/content/workspaces.cpp
|
2023-12-23 21:09:41 +01:00
|
|
|
source/content/pl_visualizers.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
|
2023-12-07 23:33:15 +01:00
|
|
|
source/content/providers/process_memory_provider.cpp
|
2023-12-26 23:42:22 +01:00
|
|
|
source/content/providers/base64_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
|
2024-01-04 00:38:21 +01:00
|
|
|
source/content/tools/http_requests.cpp
|
2023-11-12 01:22:01 +01:00
|
|
|
|
2023-12-23 21:09:41 +01:00
|
|
|
source/content/pl_visualizers/hex_viewer.cpp
|
|
|
|
source/content/pl_visualizers/chunk_entropy.cpp
|
|
|
|
|
2023-12-13 23:03:39 +01:00
|
|
|
source/content/tutorials/tutorials.cpp
|
|
|
|
source/content/tutorials/introduction.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_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_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
|
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-12-13 13:04:59 +01:00
|
|
|
source/content/views/view_tutorials.cpp
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2023-06-21 20:07:36 +02:00
|
|
|
source/content/helpers/notification.cpp
|
2023-07-27 00:53:04 +02:00
|
|
|
INCLUDES
|
|
|
|
include
|
2023-12-22 23:39:38 +01:00
|
|
|
|
|
|
|
LIBRARIES
|
2023-12-23 21:09:41 +01:00
|
|
|
ui
|
2023-12-22 23:39:38 +01:00
|
|
|
${JTHREAD_LIBRARIES}
|
2023-12-23 21:09:41 +01:00
|
|
|
plcli
|
2024-01-04 00:37:56 +01:00
|
|
|
LLVMDemangle
|
2023-10-16 23:45:46 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
target_link_libraries(builtin PRIVATE setupapi)
|
|
|
|
endif ()
|