File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 3
3
set -e # Quit script on error
4
4
SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
5
5
6
- if [ ! -d " vcpkg" ]; then
6
+ if [ ! -d " vcpkg" ]; then
7
7
echo " Cloning vcpkg"
8
8
git clone --single-branch --branch master https://github.com/microsoft/vcpkg.git vcpkg
9
9
fi
10
10
11
11
if [ ! -f " vcpkg/vcpkg" ]; then
12
12
echo " Building vcpkg"
13
- cd vcpkg
13
+ cd vcpkg
14
14
./bootstrap-vcpkg.sh -disableMetrics
15
- cd ${SCRIPT_DIR}
15
+ cd ${SCRIPT_DIR}
16
16
fi
17
17
18
18
cd vcpkg
Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5
5
# Check to see if we have a bundled Ruby and if so, use that
6
6
# Otherwise use system ruby
7
7
# Build vcpkg
8
- if [ ! -d " vcpkg" ]; then
8
+ if [ ! -d " vcpkg" ]; then
9
9
echo " Cloning vcpkg"
10
10
git clone --single-branch --branch master https://github.com/microsoft/vcpkg.git vcpkg
11
11
fi
12
12
13
13
if [ ! -f " vcpkg/vcpkg" ]; then
14
14
echo " Building vcpkg"
15
- cd vcpkg
15
+ cd vcpkg
16
16
./bootstrap-vcpkg.sh -disableMetrics
17
- cd ${SCRIPT_DIR}
17
+ cd ${SCRIPT_DIR}
18
18
fi
19
19
20
20
triplet=(x64-osx)
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ if not exist "vcpkg\" (
9
9
)
10
10
11
11
if not exist " vcpkg\vcpkg.exe" (
12
- cd vcpkg
12
+ cd vcpkg
13
13
echo Building vcpkg
14
14
call bootstrap-vcpkg.bat -disableMetrics
15
15
cd %~dp0
16
16
)
17
17
18
18
cd vcpkg
19
- echo Installing Libraries
19
+ echo Installing Libraries
20
20
vcpkg install kissfft fmt crossguid sdl2 gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --triplet x64-windows-static-md --recurse
21
21
22
22
cd %~dp0
You can’t perform that action at this time.
0 commit comments