poem-mobile/linux/runner/CMakeLists.txt
LingandRX 60acec3f52 feat: 初始化 Flutter 项目
- 添加 .gitignore 文件,配置项目忽略项
- 创建 .metadata 文件,记录项目元数据
- 编写 README.md,介绍项目基本信息
- 配置 analysis_options.yaml,设置代码分析规则
- 新增 Android 相关文件和目录,包括 Gradle 配置、资源文件等
- 新增 iOS 相关文件和目录,包括 AppFrameworkInfo.plist、Debug.xcconfig 等
2025-01-02 00:23:38 +08:00

27 lines
974 B
CMake

cmake_minimum_required(VERSION 3.13)
project(runner LANGUAGES CXX)
# Define the application target. To change its name, change BINARY_NAME in the
# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer
# work.
#
# Any new source files that you add to the application should be added here.
add_executable(${BINARY_NAME}
"main.cc"
"my_application.cc"
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
)
# Apply the standard set of build settings. This can be removed for applications
# that need different build settings.
apply_standard_settings(${BINARY_NAME})
# Add preprocessor definitions for the application ID.
add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}")
# Add dependency libraries. Add any application-specific dependencies here.
target_link_libraries(${BINARY_NAME} PRIVATE flutter)
target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK)
target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}")