From 359b2ee7c9f20f99f221f78e307369ef5ad0ece2 Mon Sep 17 00:00:00 2001 From: Peter <> Date: Mon, 10 Jun 2019 20:20:30 +0100 Subject: [PATCH] Update build configuration --- BUCK | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BUCK b/BUCK index b1d82986b6..415648422d 100644 --- a/BUCK +++ b/BUCK @@ -1,13 +1,13 @@ -load('//tools:buck_utils.bzl', 'config_with_updated_linker_flags', 'configs_with_config') -load('//tools:buck_defs.bzl', 'SHARED_CONFIGS') +load('//tools:buck_utils.bzl', 'config_with_updated_linker_flags', 'configs_with_config', 'combined_config') +load('//tools:buck_defs.bzl', 'SHARED_CONFIGS', 'EXTENSION_LIB_SPECIFIC_CONFIG') apple_library( name = 'SwiftSignalKit', srcs = glob([ 'SwiftSignalKit/*.swift' ]), + configs = configs_with_config(combined_config([SHARED_CONFIGS, EXTENSION_LIB_SPECIFIC_CONFIG])), modular = True, - configs = configs_with_config({}), visibility = ['PUBLIC'], frameworks = [ '$SDKROOT/System/Library/Frameworks/Foundation.framework', @@ -19,6 +19,7 @@ apple_library( srcs = glob([ 'SSignalKit/*.m', ]), + configs = configs_with_config(combined_config([SHARED_CONFIGS, EXTENSION_LIB_SPECIFIC_CONFIG])), headers = glob([ 'SSignalKit/*.h', ]), @@ -27,7 +28,6 @@ apple_library( 'SSignalKit/*.h', ]), modular = True, - configs = configs_with_config({}), compiler_flags = ['-w'], preprocessor_flags = ['-fobjc-arc'], visibility = ['PUBLIC'],