You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
805 B
25 lines
805 B
3 years ago
|
cmake_minimum_required(VERSION 3.15)
|
||
|
set(PROJECT_NAME "bytedesk_kefu")
|
||
|
project(${PROJECT_NAME} LANGUAGES CXX)
|
||
|
|
||
|
# This value is used when generating builds using this plugin, so it must
|
||
|
# not be changed
|
||
|
set(PLUGIN_NAME "bytedesk_kefu_plugin")
|
||
|
|
||
|
add_library(${PLUGIN_NAME} SHARED
|
||
|
"bytedesk_kefu_plugin.cpp"
|
||
|
)
|
||
|
apply_standard_settings(${PLUGIN_NAME})
|
||
|
set_target_properties(${PLUGIN_NAME} PROPERTIES
|
||
|
CXX_VISIBILITY_PRESET hidden)
|
||
|
target_compile_definitions(${PLUGIN_NAME} PRIVATE FLUTTER_PLUGIN_IMPL)
|
||
|
target_include_directories(${PLUGIN_NAME} INTERFACE
|
||
|
"${CMAKE_CURRENT_SOURCE_DIR}/include")
|
||
|
target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin)
|
||
|
|
||
|
# List of absolute paths to libraries that should be bundled with the plugin
|
||
|
set(bytedesk_kefu_bundled_libraries
|
||
|
""
|
||
|
PARENT_SCOPE
|
||
|
)
|