14 lines
332 B
CMake
14 lines
332 B
CMake
# 收集源文件
|
|
set(SOURCES
|
|
collector/DataCollector.cpp
|
|
core/System.cpp
|
|
detector/CollisionDetector.cpp
|
|
mock/MockDataService.cpp
|
|
network/HTTPDataSource.cpp
|
|
spatial/AirportBounds.cpp
|
|
spatial/CoordinateConverter.cpp
|
|
types/BasicTypes.cpp
|
|
types/VehicleData.cpp
|
|
)
|
|
|
|
# ... 其余部分保持不变 ... |