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-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
|
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
|
|
|
|
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_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
|
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
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2022-09-07 23:11:24 +02:00
|
|
|
source/content/helpers/math_evaluator.cpp
|
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 ()
|