blob: 704773b0e3e5c26f62eab22ad82520a46eeb329f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#! /usr/bin/env bash
# file : build/import/cli/configure
# copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
# license : MIT; see accompanying LICENSE file
# $1 - out file
#
# bld_root - build root
# project_name - project name
#
source $bld_root/dialog.bash
$echo
$echo "Configuring external dependency on 'cli' for '$project_name'."
$echo
$echo
$echo "Would you like to configure dependency on the installed "
$echo "version of 'cli' as opposed to the development build?"
$echo
installed=`read_y_n y`
path=
if [ "$installed" = "n" ]; then
$echo
$echo "Please enter the src_root for 'cli'."
$echo
src_root=`read_path --directory --exist`
$echo
$echo "Please enter the out_root for 'cli'."
$eche
out_root=`read_path --directory $src_root`
fi
echo cli_installed := $installed >$1
if [ "$installed" = "n" ]; then
echo src_root := $src_root >>$1
echo scf_root := \$\(src_root\)/build >>$1
echo out_root := $out_root >>$1
fi
|