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
|
|
|
|
source/content/lang_builtin_functions.cpp
|
|
|
|
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-01-22 18:01:39 +01:00
|
|
|
|
|
|
|
source/math_evaluator.cpp
|
|
|
|
)
|
|
|
|
|
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)
|
|
|
|
set(CMAKE_SHARED_LIBRARY_PREFIX "plugin")
|
|
|
|
|
|
|
|
if (WIN32)
|
2021-02-02 00:39:47 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++ -static-libgcc -Wl,--allow-multiple-definition")
|
2021-01-22 22:44:45 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT TARGET libimhex)
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../libimhex ${CMAKE_CURRENT_BINARY_DIR}/plugins/libimhex)
|
|
|
|
endif()
|