This commit is contained in:
Vladimir Dubovik
2025-06-13 11:59:16 +03:00
parent 2204bb9fe0
commit 5abafda21b
152 changed files with 9783 additions and 69 deletions

View File

@ -0,0 +1,11 @@
//
// This file defines additional configuration options that are appropriate only
// for an application on watchOS. This should be set at the target level for
// each project configuration.
//
// Import base application settings
#include "../Base/Targets/Application.xcconfig"
// Apply common settings specific to watchOS
#include "watchOS-Base.xcconfig"

View File

@ -0,0 +1,15 @@
//
// This file defines additional configuration options that are appropriate only
// for watchOS. This file is not standalone -- it is meant to be included into
// a configuration file for a specific type of target.
//
// Where to find embedded frameworks
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @loader_path/Frameworks
// The base SDK to use (if no version is specified, the latest version is
// assumed)
SDKROOT = watchos
// Supported device families
TARGETED_DEVICE_FAMILY = 4

View File

@ -0,0 +1,11 @@
//
// This file defines additional configuration options that are appropriate only
// for a framework on watchOS. This should be set at the target level for each
// project configuration.
//
// Import base framework settings
#include "../Base/Targets/Framework.xcconfig"
// Import common settings specific to iOS
#include "watchOS-Base.xcconfig"

View File

@ -0,0 +1,11 @@
//
// This file defines additional configuration options that are appropriate only
// for a static library on watchOS. This should be set at the target level for
// each project configuration.
//
// Import base static library settings
#include "../Base/Targets/StaticLibrary.xcconfig"
// Apply common settings specific to watchOS
#include "watchOS-Base.xcconfig"