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
|
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/layouts.cpp
|
|
|
|
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-07-30 22:01:49 +02:00
|
|
|
source/content/shortcuts.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
|
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
|
2021-12-07 22:47:41 +01:00
|
|
|
|
2022-09-07 23:11:24 +02:00
|
|
|
source/content/helpers/math_evaluator.cpp
|
2022-11-08 21:43:22 +01:00
|
|
|
|
|
|
|
source/ui/hex_editor.cpp
|
|
|
|
source/ui/pattern_drawer.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 #
|
2022-08-26 00:18:08 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE libimhex)
|
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)
|
2022-08-05 08:32:08 +02:00
|
|
|
setupCompilerWarnings(${PROJECT_NAME})
|
2022-09-29 10:33:39 +02:00
|
|
|
|
|
|
|
set(LIBROMFS_RESOURCE_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/romfs)
|
|
|
|
set(LIBROMFS_PROJECT_NAME ${PROJECT_NAME})
|
|
|
|
add_subdirectory(../../lib/external/libromfs ${CMAKE_CURRENT_BINARY_DIR}/libromfs)
|
2022-09-29 10:47:34 +02:00
|
|
|
set_target_properties(${LIBROMFS_LIBRARY} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
2022-09-29 10:33:39 +02:00
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE ${LIBROMFS_LIBRARY})
|