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.
23 lines
704 B
23 lines
704 B
4 years ago
|
cmake_minimum_required(VERSION 3.15)
|
||
|
set(PROJECT_NAME "argon2_ffi")
|
||
|
project(${PROJECT_NAME} LANGUAGES CXX)
|
||
|
|
||
|
set(PLUGIN_NAME "${PROJECT_NAME}_plugin")
|
||
|
|
||
|
add_library(${PLUGIN_NAME} SHARED
|
||
|
"${PLUGIN_NAME}.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(argon2_ffi_bundled_libraries
|
||
|
""
|
||
|
PARENT_SCOPE
|
||
|
)
|