react-native-macos/local-cli/link/ios/addToHeaderSearchPaths.js

15 строки
412 B
JavaScript
Исходник Обычный вид История

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
const mapHeaderSearchPaths = require('./mapHeaderSearchPaths');
module.exports = function addToHeaderSearchPaths(project, path) {
mapHeaderSearchPaths(project, searchPaths => searchPaths.concat(path));
};