
* feat(plugins): add proxy plugin * feat: add proxy action * feat: del the state in proxy action * feat: format * fix : add check not to pub same topic and msg_type * fix: remove TimerSchedule executor check * docs: add docs * doc: change docs * fix: remove some unnessary code * refactor(proxy_plugin): migrate TopicMetaKey to core/util directory * fix: simplify the code * format * fix: struct bind * perf(proxy): use action_raw_ptr capture rather than reference capture local variable * docs: update proxy_plugin documentation and add example configuration * fix: remove necessary check in echo plugin * doc: add proxy plugin example docs * fix: migrate recordplayback plugin and echo plugin's topic_meta_key into util * fix: format * fix: remove necessary code * perf: remove unnecessary code
30 lines
945 B
CMake
30 lines
945 B
CMake
# Copyright (c) 2023, AgiBot Inc.
|
|
# All rights reserved.
|
|
|
|
# Get the current folder name
|
|
string(REGEX REPLACE ".*/\(.*\)" "\\1" CUR_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
# Set namespace
|
|
set_namespace()
|
|
|
|
# type_support_pkg
|
|
add_subdirectory(example_event_ts_pkg)
|
|
|
|
# install
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
set(CUR_INSTALL_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/install/linux)
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
set(CUR_INSTALL_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/install/win)
|
|
else()
|
|
message(FATAL_ERROR "Unsupport os")
|
|
endif()
|
|
|
|
# build all
|
|
get_namespace(CUR_SUPERIOR_NAMESPACE)
|
|
string(REPLACE "::" "_" CUR_SUPERIOR_NAMESPACE_UNDERLINE ${CUR_SUPERIOR_NAMESPACE})
|
|
add_custom_target(
|
|
${CUR_SUPERIOR_NAMESPACE_UNDERLINE}_${CUR_DIR}_build_all ALL
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CUR_INSTALL_SOURCE_DIR}/bin ${CMAKE_BINARY_DIR}
|
|
DEPENDS aimrt::runtime::main #
|
|
aimrt::examples::cpp::pb_chn::pb_chn_pub_pkg)
|