1 Star 0 Fork 0

float996/aws-iot-fleetwise-edge

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Geoff Phillips 提交于 2022-11-28 18:55 +08:00 . Release v1.0.2
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# In this configuration file, applications and libraries are added to the
# compilation configuration. This is where CMake options can be added to switch
# parts on/off
option(FWE_BUILD_PLATFORM "Build a Platform, type based on PLATFORM_TYPE." ON)
option(FWE_BUILD_VEHICLE_NETWORK "Build the vehiclenetwork library" ON)
option(FWE_BUILD_DATA_MANAGEMENT "Build the datamanagement library" ON)
option(FWE_BUILD_APP_TEST "Builds the sample app-test" ON)
option(FWE_BUILD_EXECUTION_MANAGEMENT "Build the Execution management library and application" ON)
option(FWE_BUILD_CONNECTIVITY "Build the off board connectivity module library" ON)
# set(CMAKE_CXX_CLANG_TIDY clang-tidy)
if(FWE_BUILD_PLATFORM)
add_subdirectory(platform)
endif()
if(FWE_BUILD_VEHICLE_NETWORK)
add_subdirectory(vehiclenetwork)
endif()
if(FWE_BUILD_DATA_MANAGEMENT)
add_subdirectory(datamanagement)
endif()
if(FWE_BUILD_EXECUTION_MANAGEMENT)
add_subdirectory(executionmanagement)
endif()
if(FWE_BUILD_CONNECTIVITY)
add_subdirectory(offboardconnectivity)
endif()
if(BUILD_TESTING)
add_subdirectory(testingsupport)
endif()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/float996/aws-iot-fleetwise-edge.git
git@gitee.com:float996/aws-iot-fleetwise-edge.git
float996
aws-iot-fleetwise-edge
aws-iot-fleetwise-edge
main

搜索帮助