forked from TermiT/Flycut
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDebug.xcconfig
More file actions
42 lines (30 loc) · 1.03 KB
/
Copy pathDebug.xcconfig
File metadata and controls
42 lines (30 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// Debug configuration for Flycut
// This configuration should be used for development and debugging
//
// Include common settings
#include "Common.xcconfig"
// Build configuration name
CONFIGURATION = Debug
// Optimization level - no optimization for debugging
GCC_OPTIMIZATION_LEVEL = 0
// Generate debugging symbols
DEBUG_INFORMATION_FORMAT = dwarf
// Enable assertions and debug code
ENABLE_NS_ASSERTIONS = YES
ENABLE_TESTABILITY = YES
// Preprocessor macros for debug builds
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 $(inherited)
// Code signing entitlements for debug
CODE_SIGN_ENTITLEMENTS = FlycutDebug.entitlements
// Product name with debug suffix (optional)
PRODUCT_NAME = $(TARGET_NAME)
// Swift compilation settings for debug
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG $(inherited)
// Enable all warnings for development
GCC_TREAT_WARNINGS_AS_ERRORS = NO
// Disable dead code stripping to aid debugging
DEAD_CODE_STRIPPING = NO
// Enable zombies and other debugging aids
ENABLE_NS_ASSERTIONS = YES