5edc0b876c
* feat(i18n): add Chinese(Simplified) translations * feat: keep console window on Windows for debug builds * feat(18n) * feat(i18n): improve Chinese translation * fix: unify the line terminators * feat(build): formatting * fix: exclude from SysWow64 for 64bits windows * Revert "fix: exclude from SysWow64 for 64bits windows" This reverts commita6d66a4a56
. * Revert "feat: keep console window on Windows for debug builds" This reverts commit9fd4699c9f
.
46 lines
1.4 KiB
CMake
46 lines
1.4 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/settings_entries.cpp
|
|
source/content/tools_entries.cpp
|
|
source/content/data_processor_nodes.cpp
|
|
source/content/ui_items.cpp
|
|
|
|
source/math_evaluator.cpp
|
|
|
|
source/lang/en_US.cpp
|
|
source/lang/de_DE.cpp
|
|
source/lang/it_IT.cpp
|
|
source/lang/zh_CN.cpp
|
|
)
|
|
|
|
# Add additional include directories here #
|
|
target_include_directories(${PROJECT_NAME} PRIVATE include)
|
|
# Add additional libraries here #
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE libimhex LLVMDemangle)
|
|
|
|
|
|
|
|
# ---- 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_PLUGIN_NAME=${PROJECT_NAME})
|
|
|
|
if (NOT TARGET libimhex)
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../libimhex ${CMAKE_CURRENT_BINARY_DIR}/plugins/libimhex)
|
|
endif() |