CMakeLists.txt
1 # The Flutter tooling requires that developers have CMake 3.10 or later 2 # installed. You should not increase this version, as doing so will cause 3 # the plugin to fail to compile for some customers of the plugin. 4 cmake_minimum_required(VERSION 3.10) 5 6 # Project-level configuration. 7 set(PROJECT_NAME "rust_lib_dead_drop") 8 project(${PROJECT_NAME} LANGUAGES CXX) 9 10 include("../cargokit/cmake/cargokit.cmake") 11 apply_cargokit(${PROJECT_NAME} ../../../core rust_lib_dead_drop "") 12 13 # List of absolute paths to libraries that should be bundled with the plugin. 14 # This list could contain prebuilt libraries, or libraries created by an 15 # external build triggered from this build file. 16 set(rust_lib_dead_drop_bundled_libraries 17 "${${PROJECT_NAME}_cargokit_lib}" 18 PARENT_SCOPE 19 )