Skip to content

Commit

Permalink
Move TARGETED_DEVICE_FAMILY setting to Base.xcconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Nov 16, 2015
1 parent 9f2d593 commit 276fcd5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
3 changes: 3 additions & 0 deletions iOS/iOS-Base.xcconfig
Expand Up @@ -13,3 +13,6 @@ LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @loader_path/
// The base SDK to use (if no version is specified, the latest version is
// assumed)
SDKROOT = iphoneos

// Supported device families (1 is iPhone, 2 is iPad)
TARGETED_DEVICE_FAMILY = 1,2
3 changes: 0 additions & 3 deletions iOS/iOS-StaticLibrary.xcconfig
Expand Up @@ -9,6 +9,3 @@

// Apply common settings specific to iOS
#include "iOS-Base.xcconfig"

// Supported device families (1 is iPhone, 2 is iPad)
TARGETED_DEVICE_FAMILY = 1,2
3 changes: 3 additions & 0 deletions tvOS/tvOS-Base.xcconfig
Expand Up @@ -10,3 +10,6 @@ LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @loader_path/
// The base SDK to use (if no version is specified, the latest version is
// assumed)
SDKROOT = appletvos

// Supported device families
TARGETED_DEVICE_FAMILY = 3
3 changes: 0 additions & 3 deletions tvOS/tvOS-StaticLibrary.xcconfig
Expand Up @@ -9,6 +9,3 @@

// Apply common settings specific to watchOS
#include "tvOS-Base.xcconfig"

// Supported device families
TARGETED_DEVICE_FAMILY = 3
3 changes: 3 additions & 0 deletions watchOS/watchOS-Base.xcconfig
Expand Up @@ -10,3 +10,6 @@ LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @loader_path/
// The base SDK to use (if no version is specified, the latest version is
// assumed)
SDKROOT = watchos

// Supported device families
TARGETED_DEVICE_FAMILY = 4
3 changes: 0 additions & 3 deletions watchOS/watchOS-StaticLibrary.xcconfig
Expand Up @@ -9,6 +9,3 @@

// Apply common settings specific to watchOS
#include "watchOS-Base.xcconfig"

// Supported device families
TARGETED_DEVICE_FAMILY = 4

0 comments on commit 276fcd5

Please sign in to comment.