mirror of
https://github.com/mfontanini/libtins
synced 2026-01-23 02:35:57 +01:00
Variable Boost_INCLUDE_DIRS incorrectly used in cmake file (#158)
`s/Boost_INCLUDE_DIRS/${Boost_INCLUDE_DIRS}/ inside `INCLUDE_DIRECTORIES`
This commit is contained in:
committed by
Matias Fontanini
parent
2ccf50db3e
commit
9260f9374a
@@ -150,7 +150,7 @@ IF(LIBTINS_ENABLE_ACK_TRACKER AND TINS_HAVE_CXX11)
|
|||||||
FIND_PACKAGE(Boost)
|
FIND_PACKAGE(Boost)
|
||||||
IF (Boost_FOUND)
|
IF (Boost_FOUND)
|
||||||
MESSAGE(STATUS "Enabling TCP ACK tracking support.")
|
MESSAGE(STATUS "Enabling TCP ACK tracking support.")
|
||||||
INCLUDE_DIRECTORIES(Boost_INCLUDE_DIRS)
|
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
|
||||||
SET(TINS_HAVE_ACK_TRACKER ON)
|
SET(TINS_HAVE_ACK_TRACKER ON)
|
||||||
ELSE()
|
ELSE()
|
||||||
MESSAGE(WARNING "Disabling ACK tracking support as boost.icl was not found")
|
MESSAGE(WARNING "Disabling ACK tracking support as boost.icl was not found")
|
||||||
|
|||||||
Reference in New Issue
Block a user