mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-11 23:49:38 -05:00
Merge pull request #2812 from defnax/fix-cmake-macos
[macOS] fix cmake compile on macos to find include and libs path
This commit is contained in:
commit
73f1da20f0
@ -10,6 +10,11 @@ project(retroshare-service)
|
||||
|
||||
include(CMakeDependentOption)
|
||||
|
||||
if(APPLE)
|
||||
include_directories("/usr/local/include")
|
||||
LINK_DIRECTORIES("/usr/local/lib")
|
||||
endif()
|
||||
|
||||
set(
|
||||
RS_BIN_INSTALL_DIR
|
||||
"${CMAKE_INSTALL_PREFIX}/bin"
|
||||
|
Loading…
Reference in New Issue
Block a user