Skip to content

Commit

Permalink
reorganized files
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold committed Jan 12, 2022
1 parent bfc6210 commit 518e154
Show file tree
Hide file tree
Showing 16 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ file(TO_CMAKE_PATH "${CMAKE_PREFIX_PATH}" CMAKE_PREFIX_PATH)
message(STATUS "Module Path: ${CMAKE_MODULE_PATH}")
message(STATUS "Prefix Path: ${CMAKE_PREFIX_PATH}")

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/modules)

project(tcp_pubsub)

Expand All @@ -25,10 +25,10 @@ add_subdirectory(tcp_pubsub)

add_subdirectory(thirdparty/recycle EXCLUDE_FROM_ALL)

add_subdirectory(performance_publisher)
add_subdirectory(performance_subscriber)
add_subdirectory(hello_world_publisher)
add_subdirectory(hello_world_subscriber)
add_subdirectory(samples/performance_publisher)
add_subdirectory(samples/performance_subscriber)
add_subdirectory(samples/hello_world_publisher)
add_subdirectory(samples/hello_world_subscriber)

# add_subdirectory(ecal_to_tcp)
# add_subdirectory(tcp_to_ecal)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tcp_pubsub/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ install(
include(CMakePackageConfigHelpers)

configure_package_config_file(
"../cmake/tcp_pubsubConfig.cmake.in"
"cmake/tcp_pubsubConfig.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake/tcp_pubsubConfig.cmake"
INSTALL_DESTINATION ${TCP_PUBSUB_INSTALL_CMAKE_DIR}
PATH_VARS TCP_PUBSUB_INSTALL_CMAKE_DIR
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion cmake/Findasio.cmake → thirdparty/modules/Findasio.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
find_path(Asio_INCLUDE_DIR
NAMES asio.hpp
PATHS
${CMAKE_CURRENT_LIST_DIR}/../thirdparty/asio/asio/include
${CMAKE_CURRENT_LIST_DIR}/../asio/asio/include
include
)

Expand Down

0 comments on commit 518e154

Please sign in to comment.