Skip to content

Commit 8ae7438

Browse files
authored
Merge pull request #8889 from nextcloud/feature/noid/xcode-target-is-release
chore: set xcode target to `Debug` only for dev builds
2 parents b3e705c + 7219c3b commit 8ae7438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell_integration/MacOSX/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
if(APPLE)
55
set(OC_OEM_SHARE_ICNS "${CMAKE_BINARY_DIR}/src/gui/${APPLICATION_ICON_NAME}.icns")
66

7-
if (CMAKE_BUILD_TYPE MATCHES "Debug" OR CMAKE_BUILD_TYPE MATCHES "RelWithDebInfo")
7+
if (NEXTCLOUD_DEV)
88
set(XCODE_TARGET_CONFIGURATION "Debug")
99
else()
1010
set(XCODE_TARGET_CONFIGURATION "Release")

0 commit comments

Comments
 (0)