Verified Commit 79f96f3e authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

cmake bugfix: include tokenizer header

Tokenizer components of boost suite is an header-only library that must
be explicitely imported through the Boost::boost imported target
parent e55ff409
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@ target_link_libraries(adafs_daemon
    mercury
    ${MARGO_LIBRARIES}
    # others
    Boost::boost # needed for tokenizer header
    Boost::program_options
    Boost::filesystem
    Threads::Threads
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ target_link_libraries(adafs_preload_client
    ${ABT_LIBRARIES}
    mercury
    ${MARGO_LIBRARIES}
    Boost::boost # needed for tokenizer header
    Threads::Threads
)