Skip to content

Commit

Permalink
PAL: Use /usr/local/include for includes on FreeBSD.
Browse files Browse the repository at this point in the history
  • Loading branch information
josteink committed Apr 7, 2015
1 parent 1afe5ce commit c31a3b4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pal/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)

include_directories(include)

if(CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
# required for libunwind
include_directories("/usr/local/include/")
endif()

# Compile options

if(CMAKE_SYSTEM_NAME STREQUAL Darwin)
Expand Down

0 comments on commit c31a3b4

Please sign in to comment.