remove usage of undefined CMake variable (#620)

Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
This commit is contained in:
Dirk Thomas 2020-04-17 12:48:32 -07:00 committed by GitHub
parent 1a74f8fa5d
commit 918dd5a4d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
include_directories(include ${yaml_INCLUDE_DIRS} ${rcutils_INCLUDE_DIRS} ${rcl_INCLUDE_DIRS})
include_directories(include ${yaml_INCLUDE_DIRS} ${rcutils_INCLUDE_DIRS})
set(rcl_yaml_parser_sources
src/parser.c