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.
24 lines
791 B
24 lines
791 B
#
|
|
# 在这个文件中编辑,需要在PC中运行的目标文件
|
|
#
|
|
message("PUBLIC_SRC: ${PUBLIC_SRC}")
|
|
message("PUBLIC_LINK_DIRECTORIES: ${PUBLIC_LINK_DIRECTORIES}")
|
|
message("PUBLIC_INCLUDE_DIRECTORIES: ${PUBLIC_INCLUDE_DIRECTORIES}")
|
|
message("PUBLIC_LINK_LIBS: ${PUBLIC_LINK_LIBS}")
|
|
# 添加编译的目标文件
|
|
zadd_executable_simple(
|
|
TARGET
|
|
app.out
|
|
SRC
|
|
src/main.cpp #
|
|
# src/test/socketcan.cpp
|
|
src/service/main_control_service.cpp #
|
|
src/service/iflytop_hardware_ws_service.cpp
|
|
src/service/can_service.cpp
|
|
#
|
|
)
|
|
|
|
zadd_executable_simple(TARGET test_demo.out SRC src/test/test_demo.cpp)
|
|
zadd_executable_simple(TARGET test_can.out SRC src/test/test_can.cpp)
|
|
zadd_executable_simple(TARGET dump_can_driver_info.out SRC
|
|
src/test/dump_can_driver_info.cpp)
|