4aa314b3ab
* add quick -save project- action * translation for -save project as- added * removed machine translations; header file name extension fixed * moved openProject() for consistency
97 lines
3.6 KiB
CMake
97 lines
3.6 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
# Change this to the name of your plugin #
|
|
project(builtin)
|
|
|
|
# Add your source files here #
|
|
add_library(${PROJECT_NAME} SHARED
|
|
source/plugin_builtin.cpp
|
|
|
|
source/content/command_palette_commands.cpp
|
|
source/content/data_inspector.cpp
|
|
source/content/pl_builtin_functions.cpp
|
|
source/content/pl_pragmas.cpp
|
|
source/content/settings_entries.cpp
|
|
source/content/tools_entries.cpp
|
|
source/content/data_processor_nodes.cpp
|
|
source/content/ui_items.cpp
|
|
source/content/providers.cpp
|
|
source/content/views.cpp
|
|
source/content/data_formatters.cpp
|
|
source/content/layouts.cpp
|
|
source/content/main_menu_items.cpp
|
|
source/content/welcome_screen.cpp
|
|
source/content/data_visualizers.cpp
|
|
source/content/events.cpp
|
|
source/content/hashes.cpp
|
|
source/content/shortcuts.cpp
|
|
source/content/global_actions.cpp
|
|
|
|
source/content/providers/file_provider.cpp
|
|
source/content/providers/gdb_provider.cpp
|
|
source/content/providers/disk_provider.cpp
|
|
source/content/providers/intel_hex_provider.cpp
|
|
source/content/providers/motorola_srec_provider.cpp
|
|
source/content/providers/memory_file_provider.cpp
|
|
|
|
source/content/views/view_hex_editor.cpp
|
|
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_about.cpp
|
|
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
|
|
source/content/views/view_provider_settings.cpp
|
|
source/content/views/view_find.cpp
|
|
|
|
source/content/helpers/math_evaluator.cpp
|
|
|
|
source/ui/hex_editor.cpp
|
|
source/ui/pattern_drawer.cpp
|
|
|
|
source/lang/de_DE.cpp
|
|
source/lang/en_US.cpp
|
|
source/lang/it_IT.cpp
|
|
source/lang/ja_JP.cpp
|
|
source/lang/ko_KR.cpp
|
|
source/lang/pt_BR.cpp
|
|
source/lang/zh_CN.cpp
|
|
source/lang/zh_TW.cpp
|
|
)
|
|
|
|
# Add additional include directories here #
|
|
target_include_directories(${PROJECT_NAME} PRIVATE include)
|
|
|
|
# Add additional libraries here #
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE libimhex)
|
|
|
|
# ---- No need to change anything from here downwards unless you know what you're doing ---- #
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_SHARED_LIBRARY_PREFIX "")
|
|
set(CMAKE_SHARED_LIBRARY_SUFFIX ".hexplug")
|
|
|
|
if (WIN32)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--allow-multiple-definition -fvisibility=hidden")
|
|
endif()
|
|
|
|
add_compile_definitions(IMHEX_PROJECT_NAME="${PROJECT_NAME}")
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
setupCompilerWarnings(${PROJECT_NAME})
|
|
|
|
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)
|
|
set_target_properties(${LIBROMFS_LIBRARY} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE ${LIBROMFS_LIBRARY})
|