NAV

Import the package

You can import robocop-data-logger as usual with PID. In the root CMakelists.txt file of your package, after the package declaration you have to write something like:

PID_Dependency(robocop-data-logger)

It will try to install last version of the package.

If you want a specific version (recommended), for instance the currently last released version:

PID_Dependency(robocop-data-logger VERSION 1.0)

Components

processors

This is a module library (no header files but a shared binary object). Designed to be dynamically loaded by an application or library.

CMake usage :

In the CMakeLists.txt files of your applications and tests, or those of your libraries that do not export the dependency:

PID_Component_Dependency(
				COMPONENT	your component name
				DEPEND	processors
				PACKAGE	robocop-data-logger)

In the CMakeLists.txt files of libraries exporting the dependency :

PID_Component_Dependency(
				COMPONENT	your component name
				EXPORT	processors
				PACKAGE	robocop-data-logger)

data-logger

This is a shared library (set of header files and a shared binary object).

exported dependencies:

include directive :

Not specified (dangerous). You can try including any or all of these headers:

#include <robocop/utils/data_logger.h>
#include <robocop/utils/logger_info.h>

CMake usage :

In the CMakeLists.txt files of your applications and tests, or those of your libraries that do not export the dependency:

PID_Component_Dependency(
				COMPONENT	your component name
				DEPEND	data-logger
				PACKAGE	robocop-data-logger)

In the CMakeLists.txt files of libraries exporting the dependency :

PID_Component_Dependency(
				COMPONENT	your component name
				EXPORT	data-logger
				PACKAGE	robocop-data-logger)