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
|
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-01-22 18:01:39 +01:00
|
|
|
|
|
|
|
source/math_evaluator.cpp
|
2021-02-11 00:35:30 +01:00
|
|
|
|
|
|
|
source/lang/en_US.cpp
|
2021-03-03 22:26:17 +01:00
|
|
|
source/lang/de_DE.cpp
|
2021-03-04 13:52:35 +01:00
|
|
|
source/lang/it_IT.cpp
|
2021-09-20 18:41:22 +02:00
|
|
|
source/lang/zh_CN.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)
|
|
|
|
# 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 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()
|
|
|
|
|
2021-02-07 13:40:47 +01:00
|
|
|
add_compile_definitions(IMHEX_PLUGIN_NAME=${PROJECT_NAME})
|
|
|
|
|
2021-01-22 22:44:45 +01:00
|
|
|
if (NOT TARGET libimhex)
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../libimhex ${CMAKE_CURRENT_BINARY_DIR}/plugins/libimhex)
|
|
|
|
endif()
|