Fix for macOS Homebrew Boost Includes
parent
419fc2fc73
commit
ad51a8793d
|
|
@ -5,6 +5,11 @@ set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
|
|
||||||
|
# macOS Homebrew Boost Fix
|
||||||
|
if(NOT MSVC)
|
||||||
|
include_directories(AFTER /usr/local/include)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Enable Warnings
|
# Enable Warnings
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
# Force to always compile with W4
|
# Force to always compile with W4
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue