Skip to content

Commit

Permalink
Add include dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed May 29, 2020
1 parent 52fd334 commit 27b00ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmake/arbiter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

include(${PDAL_CMAKE_DIR}/curl.cmake)

set(PDAL_ARBITER_LIB_NAME pdal_arbiter)
set(PDAL_ARBITER_LIB_NAME pdal_arbiter)
set(ARBITER_INCLUDE_DIR ${PDAL_VENDOR_DIR}/arbiter)
4 changes: 3 additions & 1 deletion plugins/hdf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ PDAL_ADD_PLUGIN(libname reader hdf
INCLUDES
${ROOT_DIR}
${NLOHMANN_INCLUDE_DIR}
${ARBITER_INCLUDE_DIR}
)

if (WITH_TESTS)
PDAL_ADD_TEST(pdal_io_hdf_reader_test
FILES test/HdfReadertest.cpp
LINK_WITH ${libname}
INCLUDES
${NLOHMANN_INCLUDE_DIR})
${NLOHMANN_INCLUDE_DIR}
${ARBITER_INCLUDE_DIR})
endif()

0 comments on commit 27b00ef

Please sign in to comment.