diff options
| author | ruki <[email protected]> | 2018-03-20 22:38:56 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-03-20 09:53:40 +0800 |
| commit | 90137767d7c9b241afe9443a6c261f362d97fd0c (patch) | |
| tree | 29579d9b9d41243fc3de399d6dcc27014a2dcdde /xmake/modules/detect/sdks/find_xcode.lua | |
| parent | b8ef04349bfa1441d4e4aa8e8ff138da2f7edf39 (diff) | |
rename sdk detect modules
Diffstat (limited to 'xmake/modules/detect/sdks/find_xcode.lua')
| -rw-r--r-- | xmake/modules/detect/sdks/find_xcode.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/xmake/modules/detect/sdks/find_xcode.lua b/xmake/modules/detect/sdks/find_xcode.lua new file mode 100644 index 000000000..143161c1a --- /dev/null +++ b/xmake/modules/detect/sdks/find_xcode.lua @@ -0,0 +1,40 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed to the Apache Software Foundation (ASF) under one +-- or more contributor license agreements. See the NOTICE file +-- distributed with this work for additional information +-- regarding copyright ownership. The ASF licenses this file +-- to you under the Apache License, Version 2.0 (the +-- "License"); you may not use this file except in compliance +-- with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015 - 2018, TBOOX Open Source Group. +-- +-- @author ruki +-- @file find_xcode.lua +-- + +-- imports +import("lib.detect.find_directory") + +-- find xcode directory +-- +-- @return the xcode directory +-- +-- @code +-- +-- local xcode_dir = find_xcode() +-- +-- @endcode +-- +function main() + return find_directory("Xcode.app", {"/Applications"}) or find_directory("Xcode*.app", {"/Applications"}) +end |
