Skip to content

Commit 5fc9c6b

Browse files
committed
Refactor PartitionsSaxHandler to use boost::json
Previously it was based on rapidjson The tests are adjusted accordingly. Relates-To: OCMAM-448 Signed-off-by: Alexander Sopov <ext-alexander.sopov@here.com>
1 parent becba7d commit 5fc9c6b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

olp-cpp-sdk-dataservice-read/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ set(DESCRIPTION "C++ API library for reading OLP data")
2121
file(GLOB_RECURSE INC "include/*.h*")
2222
file(GLOB_RECURSE SRC "src/*.*")
2323

24+
25+
find_package(Boost REQUIRED)
26+
2427
add_library(${PROJECT_NAME}
2528
${SRC}
2629
${INC})
@@ -35,6 +38,7 @@ target_include_directories(${PROJECT_NAME}
3538
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
3639
$<INSTALL_INTERFACE:include>
3740
PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
41+
$<BUILD_INTERFACE:${Boost_INCLUDE_DIR}>
3842
PRIVATE ${olp-cpp-sdk-core_INCLUDE_DIRS})
3943

4044
target_link_libraries(${PROJECT_NAME}

0 commit comments

Comments
 (0)