Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-02-18 17:15:24 +0300
committerHannah von Reth <vonreth@kde.org>2022-02-21 12:13:15 +0300
commit8a745dd937bea883470344b513e0a1234acbf595 (patch)
treeae0c69e74d8ad37c2ee89a585ca9538f74d88958 /src/gui/socketapi
parentc44d548cc9fa5a16ccba84f5585cd4a8207dba0f (diff)
Raise the required cmake version
CMake is a buildtime dpendency and even available as a prebuild for most platforms. Requireing 3.16 enables us to use target_sources in subdirectories witout the need to specify absolute paths. This also removes the warning: CMake Warning (dev) at D:/.../modules/ECMFindModuleHelpers.cmake:112 (message): Your project should require at least CMake 3.16.0 to use FindIcoTool.cmake
Diffstat (limited to 'src/gui/socketapi')
-rw-r--r--src/gui/socketapi/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/socketapi/CMakeLists.txt b/src/gui/socketapi/CMakeLists.txt
index 78ce96cfd..ed2f94428 100644
--- a/src/gui/socketapi/CMakeLists.txt
+++ b/src/gui/socketapi/CMakeLists.txt
@@ -4,5 +4,5 @@ target_sources(owncloudCore PRIVATE
)
if( APPLE )
- target_sources(owncloudCore PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/socketapisocket_mac.mm)
+ target_sources(owncloudCore PRIVATE socketapisocket_mac.mm)
endif()