mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
Only set BUILD_FILE_PROVIDER_MODULE if deployment target high enough
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
bbf280e12e
commit
bfdbecc416
1 changed files with 1 additions and 1 deletions
|
@ -77,6 +77,6 @@ if(WIN32)
|
||||||
option( BUILD_WIN_TOOLS "Build Win32 migration tools" OFF )
|
option( BUILD_WIN_TOOLS "Build Win32 migration tools" OFF )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE AND (NOT DEFINED CMAKE_OSX_DEPLOYMENT_TARGET OR CMAKE_OSX_DEPLOYMENT_TARGET VERSION_GREATER_EQUAL 11.0))
|
||||||
option( BUILD_FILE_PROVIDER_MODULE "Build the macOS virtual files File Provider module" OFF )
|
option( BUILD_FILE_PROVIDER_MODULE "Build the macOS virtual files File Provider module" OFF )
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue