facebook / wangle

Wangle is a framework providing a set of common client/server abstractions for building services in a consistent, modular, and composable way.
Apache License 2.0
3.05k stars 537 forks source link

Add Boost include dirs to CMakelist.txt #5

Open azgo14 opened 8 years ago

azgo14 commented 8 years ago

Currently the root CMakelist.txt file's include dirs are:

include_directories( ${CMAKE_SOURCE_DIR}/.. ${FOLLY_INCLUDE_DIR} ${INCLUDE_DIR} )

This is missing the boost include dirs.

I think it should be:

include_directories( ${CMAKE_SOURCE_DIR}/.. ${FOLLY_INCLUDE_DIR} ${Boost_INCLUDE_DIRS} ${INCLUDE_DIR} )