Skip to content

Commit

Permalink
Fix boost filesystem compilation issue
Browse files Browse the repository at this point in the history
Summary:Boost filesystem was missing from CMakeLists.txt.
Closes facebook#35

Reviewed By: siyengar

Differential Revision: D3128994

Pulled By: anirudhvr

fb-gh-sync-id: 369cc64e0e5d7a42e3ba7b23070661462286c75b
fbshipit-source-id: 369cc64e0e5d7a42e3ba7b23070661462286c75b
  • Loading branch information
Victor Degliame authored and Facebook Github Bot 3 committed Apr 4, 2016
1 parent ecc5bc7 commit 25ba122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wangle/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

find_package(Folly REQUIRED)
find_package(Boost REQUIRED COMPONENTS system thread)
find_package(Boost REQUIRED COMPONENTS system thread filesystem)
find_package(OpenSSL REQUIRED)
find_package(Threads REQUIRED)

Expand Down

0 comments on commit 25ba122

Please sign in to comment.