2021-01-22 17:01:39 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2021-01-22 21:44:45 +00:00
|
|
|
# Change this to the name of your plugin #
|
2021-01-22 17:01:39 +00:00
|
|
|
project(builtin)
|
|
|
|
|
2021-01-22 21:44:45 +00:00
|
|
|
# Add your source files here #
|
|
|
|
add_library(${PROJECT_NAME} SHARED
|
2021-01-22 17:01:39 +00:00
|
|
|
source/plugin_builtin.cpp
|
|
|
|
|
|
|
|
source/content/command_palette_commands.cpp
|
|
|
|
source/content/data_inspector.cpp
|
2021-09-08 13:18:24 +00:00
|
|
|
source/content/pl_builtin_functions.cpp
|
2021-01-22 17:01:39 +00:00
|
|
|
source/content/settings_entries.cpp
|
|
|
|
source/content/tools_entries.cpp
|
2021-01-30 21:39:06 +00:00
|
|
|
source/content/data_processor_nodes.cpp
|
2021-08-20 22:52:11 +00:00
|
|
|
source/content/ui_items.cpp
|
2021-01-22 17:01:39 +00:00
|
|
|
|
|
|
|
source/math_evaluator.cpp
|
2021-02-10 23:35:30 +00:00
|
|
|
|
|
|
|
source/lang/en_US.cpp
|
2021-03-03 21:26:17 +00:00
|
|
|
source/lang/de_DE.cpp
|
2021-03-04 12:52:35 +00:00
|
|
|
source/lang/it_IT.cpp
|
2021-09-20 16:41:22 +00:00
|
|
|
source/lang/zh_CN.cpp
|
2021-01-22 17:01:39 +00:00
|
|
|
)
|
|
|
|
|
2021-01-22 21:44:45 +00:00
|
|
|
# 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)
|
2021-02-07 12:40:47 +00:00
|
|
|
set(CMAKE_SHARED_LIBRARY_PREFIX "")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_SUFFIX ".hexplug")
|
2021-01-22 21:44:45 +00:00
|
|
|
|
|
|
|
if (WIN32)
|
2021-04-18 18:24:42 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--allow-multiple-definition -fvisibility=hidden")
|
2021-01-22 21:44:45 +00:00
|
|
|
endif()
|
|
|
|
|
2021-02-07 12:40:47 +00:00
|
|
|
add_compile_definitions(IMHEX_PLUGIN_NAME=${PROJECT_NAME})
|
|
|
|
|
2021-01-22 21:44:45 +00:00
|
|
|
if (NOT TARGET libimhex)
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../libimhex ${CMAKE_CURRENT_BINARY_DIR}/plugins/libimhex)
|
|
|
|
endif()
|