Skip to content
Snippets Groups Projects
Commit 3c03e668 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

use CMake for EXAMPLE_ROBOT_DATA_MODEL_DIR

parent 026d5984
No related branches found
No related tags found
No related merge requests found
Pipeline #28088 passed
......@@ -64,6 +64,11 @@ if(NOT INSTALL_PYTHON_INTERFACE_ONLY)
add_library(${PROJECT_NAME} INTERFACE)
target_include_directories(${PROJECT_NAME}
INTERFACE $<INSTALL_INTERFACE:include>)
target_compile_definitions(
${PROJECT_NAME}
INTERFACE
EXAMPLE_ROBOT_DATA_MODEL_DIR="$<INSTALL_PREFIX>/share/${PROJECT_NAME}/robots"
)
install(
TARGETS ${PROJECT_NAME}
EXPORT ${TARGETS_EXPORT_NAME}
......
configure_file(path.hpp.in path.hpp)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/path.hpp
DESTINATION include/${CUSTOM_HEADER_DIR})
#ifndef EXAMPLE_ROBOT_DATA_PATH_HPP
#define EXAMPLE_ROBOT_DATA_PATH_HPP
#define EXAMPLE_ROBOT_DATA_MODEL_DIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/robots"
#include <example-robot-data/warning.hh>
#pragma message EXAMPLE_ROBOT_DATA_WARN( \
"Header `example-robot-data/path.hpp` is deprecated and useless!")
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment