Skip to content

Commit

Permalink
Merge pull request #71 from tgfrerer/vs2017
Browse files Browse the repository at this point in the history
updates for vs2017
  • Loading branch information
arturoc authored Jul 4, 2017
2 parents 4a25c53 + a209139 commit 6731f7c
Show file tree
Hide file tree
Showing 17 changed files with 200 additions and 51 deletions.
52 changes: 38 additions & 14 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,44 @@
version: 1.0.{build}
os: Visual Studio 2015 RC
version: 2.0.{build}

environment:
global:
APPVEYOR_OS_NAME: windows
CHERE_INVOKING: 1
matrix:
#MSYS2 Building
- platform: x86
# VisualStudio 2017 64 bit Building
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
platform: x64
TARGET: vs
VS_VER: 15
ARCH: 64
VS_NAME: 2017
# VisualStudio 2017 32 bit Building
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
platform: x86
TARGET: vs
VS_VER: 15
ARCH: 32
VS_NAME: 2017
# MSYS2 Building
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
platform: x86
TARGET: msys2
ARCH: 32

#VisualStudio Building
- platform: x86
VS_NAME:
#VisualStudio 2015 32 bit Building
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
platform: x86
TARGET: vs
VS_VER: 14
ARCH: 32
- platform: x64
VS_NAME: 2015
#VisualStudio 2015 64 bit Building
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
platform: x64
VS_VER: 14
TARGET: vs
ARCH: 64
VS_NAME: 2015

configuration: Debug
shallow_clone: true
Expand All @@ -26,15 +47,18 @@ clone_depth: 10
init:
- set MSYS2_PATH=c:\msys64
- set PATH=%MSYS2_PATH%\usr\bin;%PATH%
#- '%MSYS2_PATH%\usr\bin\bash -lc "pacman --noconfirm -Sy pacman"'
#- '%MSYS2_PATH%\usr\bin\bash -lc "pacman --noconfirm -Syu"'
#- '%MSYS2_PATH%\usr\bin\bash -lc "pacman --noconfirm -Su"'
- '%MSYS2_PATH%\usr\bin\bash -lc "pacman --noconfirm -S unzip dos2unix gperf mingw-w64-i686-libxml2"'
- if "%TARGET%_%PLATFORM%"=="msys2_x86" set MSYSTEM=MINGW32
- if "%TARGET%_%PLATFORM%"=="msys2_x64" set MSYSTEM=MINGW64
- if "%PLATFORM%"=="x86" call "%VS140COMNTOOLS%\vsvars32.bat"
- if "%PLATFORM%"=="x64" call "%VS140COMNTOOLS%..\..\VC\vcvarsall" amd64
- if "%TARGET%"=="vs" set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin;%PATH%
# visual studio 2015
- if "%PLATFORM%_%VS_VER%"=="x86_14" call "%VS140COMNTOOLS%\vsvars32.bat"
- if "%PLATFORM%_%VS_VER%"=="x64_14" call "%VS140COMNTOOLS%..\..\VC\vcvarsall" amd64
- if "%TARGET%_%VS_VER%"=="vs_14" set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin;%PATH%
# visual studio 2017
- if "%PLATFORM%_%VS_VER%"=="x86_15" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat"
- if "%PLATFORM%_%VS_VER%"=="x64_15" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
- if "%TARGET%_%VS_VER%"=="vs_15" set PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.25017\bin\HostX64\x64;%PATH%


build_script:
- '%MSYS2_PATH%\usr\bin\bash -lc "scripts/build.sh"'
Expand Down
92 changes: 82 additions & 10 deletions apothecary/apothecary
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,13 @@ if [ "$(${APOTHECARY_DIR}/ostype.sh)" == "osx" ]; then
IOS_MIN_SDK_VER=7.0
fi

# used when building for vs
VS_VER=14
# used when building for vs - set to 15 if not set explicitly
if [ -z ${VS_VER+x} ] ; then
echo "VS_VER was unset - set to 15"
VS_VER=15
else
echo "VS_VER is set to '$VS_VER'"
fi
VS_64_BIT_ENV='VC\vcvarsall'

# paths to android SDK, etc
Expand Down Expand Up @@ -850,20 +855,87 @@ function gitclone() {
# example: vs-build "./tess2.sln" Build Debug
# http://msdn.microsoft.com/library/vstudio/b20w810z.aspx
function vs-build() {
if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && $VS_BUILD_TOOL $1 /${2:-Build} \"${3:-Release}\""
elif [ $ARCH == 64 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && $VS_BUILD_TOOL $1 /${2:-Build} \"${3:-Release}\""

if [ $VS_VER -gt 14 ] ; then

echo "-- Searching for vs-build"
# vswhere is a utility to find the most recent vs compiler toolchain. it is
# assumed to be installed at a fixed location
VSWHERE_EXE=`cmd.exe //c "echo %ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"`
echo "-- Found vswhere: ${VSWHERE_EXE}"
# vswhere allows us to query the install dir of the ms build tools
VS_INSTALL_PATH=`cmd //c "${VSWHERE_EXE}" -latest -products Microsoft.VisualStudio.Product.Community -requires Microsoft.VisualStudio.Component.VC.CoreIde -property installationPath`
echo "-- Found vs install path: ${VS_INSTALL_PATH}"
# msbuild is the tool used to build visual studio solutions
MSBUILD_PATH="${VS_INSTALL_PATH}\MSBuild\\${VS_VER}.0\Bin\MSBuild.exe"
echo "-- Found MSBuild path: ${MSBUILD_PATH}"

# define fallback build selection if vs-build was not called with enough parameters.
DEFAULT_BUILD="Release|x64"
if [ $ARCH == 32 ] ; then
DEFAULT_BUILD="Release|Win32"
fi

# Cut part before '|' character of third parameter (which defaults to "Default|x64") and store it as BUILD_CONFIGURATION
BUILD_CONFIGURATION="$( cut -d '|' -f 1 <<< "${3:-$DEFAULT_BUILD}" )"
BUILD_CONFIGURATION=$BUILD_CONFIGURATION
# Cut part after '|' character of third parameter (which defaults to "Default|x64") and store it as BUILD_PLATFORM
BUILD_PLATFORM="$( cut -d '|' -f 2- <<< "${3:-$DEFAULT_BUILD}" )"
BUILD_PLATFORM=$BUILD_PLATFORM

echo "-- Build platform: $BUILD_PLATFORM"
echo "-- Build configuration: $BUILD_CONFIGURATION"

BUILD_EXEC="\"${MSBUILD_PATH}\" \"$1\" /t:${2:-Build} /p:Platform=\"$BUILD_PLATFORM\" /p:Configuration=\"$BUILD_CONFIGURATION\""
echo "-- Build parameters: $BUILD_EXEC"

# we need to add some extra outer quotes, since cmd.exe will only remove the outermost quotes and we might
# have some quotes inside the command.
cmd.exe /c "\"$BUILD_EXEC\""

else
#statements
if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && $VS_BUILD_TOOL $1 /${2:-Build} \"${3:-Release}\""
elif [ $ARCH == 64 ] ; then
echo "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && $VS_BUILD_TOOL $1 /${2:-Build} \"${3:-Release}\""
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && $VS_BUILD_TOOL $1 /${2:-Build} \"${3:-Release}\""
fi
fi

}

# visual studio upgrader
# http://msdn.microsoft.com/en-us/library/vstudio/w15a82ay(v=vs.110).aspx
function vs-upgrade() {
if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && $VS_BUILD_TOOL $1 /Upgrade"
elif [ $ARCH == 64 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && $VS_BUILD_TOOL $1 /Upgrade"
echo "-- vs-upgrade()"

if [ $VS_VER -gt 14 ] ; then
echo "-- Searching for devenv"
# vswhere is a utility to find the most recent vs compiler toolchain. it is
# assumed to be installed at a fixed location
VSWHERE_EXE=`cmd.exe //c "echo %ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"`
echo "-- Found vswhere: ${VSWHERE_EXE}"
# vswhere allows us to query the install dir of the ms build tools
VS_IDE_INSTALL_PATH=`cmd //c "${VSWHERE_EXE}" -latest -products Microsoft.VisualStudio.Product.Community -requires Microsoft.VisualStudio.Component.VC.CoreIde -property installationPath`
echo "-- Found vs ide install path: ${VS_IDE_INSTALL_PATH}"
# msbuild is the tool used to build visual studio solutions
DEVENV_PATH="${VS_IDE_INSTALL_PATH}\Common7\IDE\devenv.exe"
echo "-- Found devenv path: ${DEVENV_PATH}"

UPGRADE_EXEC="\"${DEVENV_PATH}\" $1 /Upgrade"
echo "-- Upgrade parameters: $UPGRADE_EXEC"

# we need to add some extra outer quotes, since cmd.exe will only remove the outermost quotes and we might
# have some quotes inside the command.
cmd.exe /c "\"$UPGRADE_EXEC\""

else
if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && $VS_BUILD_TOOL $1 /Upgrade"
elif [ $ARCH == 64 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && $VS_BUILD_TOOL $1 /Upgrade"
fi
fi
}

Expand Down
2 changes: 1 addition & 1 deletion apothecary/formulas/_depends/zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function build() {
unset TEMP
if [ $ARCH == 32 ] ; then
cmake -G "Visual Studio $VS_VER"
vs-build "zlib.sln"
vs-build "zlib.sln" Build "Release|Win32"
elif [ $ARCH == 64 ] ; then
cmake -G "Visual Studio $VS_VER Win64"
vs-build "zlib.sln" Build "Release|x64"
Expand Down
2 changes: 1 addition & 1 deletion apothecary/formulas/boost/boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
FORMULA_TYPES=( "osx" "ios" "tvos" "android" "emscripten" "vs" )

# define the version
VERSION=1.62.0
VERSION=1.64.0
VERSION_UNDERSCORES="$(echo "$VERSION" | sed 's/\./_/g')"
TARBALL="boost_${VERSION_UNDERSCORES}.tar.gz"

Expand Down
16 changes: 11 additions & 5 deletions apothecary/formulas/curl/curl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,17 @@ function build() {
export OPENSSL_LIBRARIES=$OF_LIBS_OPENSSL_ABS_PATH/lib/
PATH=$OPENSSL_LIBRARIES:$PATH cmd //c "projects\\generate.bat vc14"
cd projects/Windows/VC14/lib
if [ $ARCH == 32 ] ; then
PATH=$OPENSSL_LIBRARIES:$PATH vs-build libcurl.sln Build "LIB Release - LIB OpenSSL|Win32"
else
PATH=$OPENSSL_LIBRARIES:$PATH vs-build libcurl.sln Build "LIB Release - LIB OpenSSL|x64"
fi

# perform upgrade for vs2017, as project file will be for vs 2015
if [ $VS_VER -gt 14 ] ; then
vs-upgrade libcurl.sln
fi

if [ $ARCH == 32 ] ; then
PATH=$OPENSSL_LIBRARIES:$PATH vs-build libcurl.sln Build "LIB Release - LIB OpenSSL|Win32"
else
PATH=$OPENSSL_LIBRARIES:$PATH vs-build libcurl.sln Build "LIB Release - LIB OpenSSL|x64"
fi

elif [ "$TYPE" == "android" ]; then
local BUILD_TO_DIR=$BUILD_DIR/curl/build/$TYPE/$ABI
Expand Down
4 changes: 3 additions & 1 deletion apothecary/formulas/freetype/freetype.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ function build() {
unset TEMP
unset temp
cd builds/windows/vc2010 #this upgrades without issue to vs2015
vs-upgrade "freetype.sln"

vs-upgrade freetype.sln

if [ "$ARCH" == "32" ] ; then
vs-build freetype.sln Build "Release|Win32"
elif [ "$ARCH" == "64" ] ; then
Expand Down
3 changes: 3 additions & 0 deletions apothecary/formulas/libpng/libpng.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ function build() {
unset TMP
unset TEMP
cd projects/vs2015

vs-upgrade libpng.sln

if [ $ARCH == 32 ] ; then
vs-build libpng.sln Build "LIB Release|x86"
elif [ $ARCH == 64 ] ; then
Expand Down
3 changes: 3 additions & 0 deletions apothecary/formulas/libxml2/libxml2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ function build() {
unset TMP
unset TEMP
cd win32/VC10

vs-upgrade libxml2.vcxproj

if [ $ARCH == 32 ] ; then
vs-build libxml2.vcxproj Build "Release|Win32"
else
Expand Down
4 changes: 2 additions & 2 deletions apothecary/formulas/opencv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ function build() {
-DWITH_PNG=OFF \
-DWITH_OPENCL=OFF \
-DWITH_PVAPI=OFF | tee ${LOG}
vs-build "OpenCV.sln"
vs-build "OpenCV.sln" Build "Debug"
vs-build "OpenCV.sln" Build "Release|Win32"
vs-build "OpenCV.sln" Build "Debug|Win32"
elif [ $ARCH == 64 ] ; then
mkdir -p build_vs_64
cd build_vs_64
Expand Down
7 changes: 6 additions & 1 deletion apothecary/formulas/poco/buildwin.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ if %VS_VERSION%==vs100 (set VCPROJ_EXT=vcxproj)
if %VS_VERSION%==vs110 (set VCPROJ_EXT=vcxproj)
if %VS_VERSION%==vs120 (set VCPROJ_EXT=vcxproj)
if %VS_VERSION%==vs140 (set VCPROJ_EXT=vcxproj)
if %VS_VERSION%==vs150 (set VCPROJ_EXT=vcxproj)

if "%8"=="" goto use_devenv
set BUILD_TOOL=%8
Expand All @@ -132,6 +133,8 @@ if "%VS_VERSION%"=="vs100" (set BUILD_TOOL=msbuild)
if "%VS_VERSION%"=="vs110" (set BUILD_TOOL=msbuild)
if "%VS_VERSION%"=="vs120" (set BUILD_TOOL=msbuild)
if "%VS_VERSION%"=="vs140" (set BUILD_TOOL=msbuild)
if "%VS_VERSION%"=="vs150" (set BUILD_TOOL=msbuild)

:use_custom
if not "%BUILD_TOOL%"=="msbuild" (set USEENV=/useenv)
if "%BUILD_TOOL%"=="msbuild" (
Expand All @@ -147,6 +150,7 @@ if "%VS_VERSION%"=="vs100" (goto msbuildok)
if "%VS_VERSION%"=="vs110" (goto msbuildok)
if "%VS_VERSION%"=="vs120" (goto msbuildok)
if "%VS_VERSION%"=="vs140" (goto msbuildok)
if "%VS_VERSION%"=="vs150" (goto msbuildok)
if "%BUILD_TOOL%"=="msbuild" (
echo "Cannot use msbuild with Visual Studio 2008 or earlier."
exit /b 2
Expand Down Expand Up @@ -191,6 +195,7 @@ set USEENV=
if %VS_VERSION%==vs110 (set EXTRASW=/m /p:VisualStudioVersion=11.0)
if %VS_VERSION%==vs120 (set EXTRASW=/m /p:VisualStudioVersion=12.0)
if %VS_VERSION%==vs140 (set EXTRASW=/m /p:VisualStudioVersion=14.0)
if %VS_VERSION%==vs150 (set EXTRASW=/m /p:VisualStudioVersion=15.0)
)

rem SAMPLES [samples|nosamples]
Expand Down Expand Up @@ -597,7 +602,7 @@ exit /b 1
echo Usage:
echo ------
echo buildwin VS_VERSION [ACTION] [LINKMODE] [CONFIGURATION] [PLATFORM] [SAMPLES] [TESTS] [TOOL]
echo VS_VERSION: "90|100|110|120|140"
echo VS_VERSION: "90|100|110|120|140|150"
echo ACTION: "build|rebuild|clean|upgrade"
echo LINKMODE: "static_mt|static_md|shared|all"
echo CONFIGURATION: "release|debug|both"
Expand Down
27 changes: 21 additions & 6 deletions apothecary/formulas/poco/poco.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,28 @@ function build() {
elif [ "$TYPE" == "vs" ] ; then
unset TMP
unset TEMP
if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && buildwin.cmd ${VS_VER}0 upgrade static_md both Win32 nosamples notests"
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && buildwin.cmd ${VS_VER}0 build static_md both Win32 nosamples notests"
elif [ $ARCH == 64 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && buildwin.cmd ${VS_VER}0 upgrade static_md both x64 nosamples notests"
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && buildwin.cmd ${VS_VER}0 build static_md both x64 nosamples notests"

if [[ $VS_VER -gt 14 ]]; then

if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat\" && buildwin.cmd ${VS_VER}0 upgrade static_md both Win32 nosamples notests"
cmd.exe /c "call \"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat\" && buildwin.cmd ${VS_VER}0 build static_md both Win32 nosamples notests"
elif [ $ARCH == 64 ] ; then
cmd.exe /c "call \"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat\" && buildwin.cmd ${VS_VER}0 upgrade static_md both x64 nosamples notests"
cmd.exe /c "call \"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat\" && buildwin.cmd ${VS_VER}0 build static_md both x64 nosamples notests"
fi

else

if [ $ARCH == 32 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && buildwin.cmd ${VS_VER}0 upgrade static_md both Win32 nosamples notests"
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%vsvars32.bat\" && buildwin.cmd ${VS_VER}0 build static_md both Win32 nosamples notests"
elif [ $ARCH == 64 ] ; then
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && buildwin.cmd ${VS_VER}0 upgrade static_md both x64 nosamples notests"
cmd.exe /c "call \"%VS${VS_VER}0COMNTOOLS%..\\..\\${VS_64_BIT_ENV}\" amd64 && buildwin.cmd ${VS_VER}0 build static_md both x64 nosamples notests"
fi
fi

elif [ "$TYPE" == "msys2" ] ; then
cp $FORMULA_DIR/MinGWConfig64 build/config/MinGW

Expand Down
22 changes: 17 additions & 5 deletions apothecary/formulas/pugixml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,25 @@ function build() {
unset TMP
unset TEMP
cd scripts
if [ $ARCH == 32 ] ; then
vs-build pugixml_vs2015.vcxproj Build "Release|x86"
vs-build pugixml_vs2015.vcxproj Build "Debug|x86"

if [[ $VS_VER -gt 14 ]]; then
if [ $ARCH == 32 ] ; then
vs-build "pugixml_vs2015.vcxproj" build "Release|Win32"
vs-build "pugixml_vs2015.vcxproj" build "Debug|Win32"
else
vs-build "pugixml_vs2015.vcxproj" build "Release|x64"
vs-build "pugixml_vs2015.vcxproj" build "Debug|x64"
fi
else
vs-build pugixml_vs2015.vcxproj Build "Release|x64"
vs-build pugixml_vs2015.vcxproj Build "Debug|x64"
if [ $ARCH == 32 ] ; then
vs-build "pugixml_vs2015.vcxproj" build "Release"
vs-build "pugixml_vs2015.vcxproj" build "Debug"
else
vs-build "pugixml_vs2015.vcxproj" build "Release|x64"
vs-build "pugixml_vs2015.vcxproj" build "Debug|x64"
fi
fi

elif [ "$TYPE" == "android" ]; then
source ../../android_configure.sh $ABI
# Compile the program
Expand Down
4 changes: 2 additions & 2 deletions apothecary/formulas/rtAudio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ function build() {
mkdir -p build_vs_32
cd build_vs_32
cmake .. -G "Visual Studio $VS_VER" -DAUDIO_WINDOWS_WASAPI=ON -DAUDIO_WINDOWS_DS=ON -DAUDIO_WINDOWS_ASIO=ON
vs-build "rtaudio_static.vcxproj"
vs-build "rtaudio_static.vcxproj" Build "Debug"
vs-build "rtaudio_static.vcxproj" Build "Release|Win32"
vs-build "rtaudio_static.vcxproj" Build "Debug|Win32"
elif [ $ARCH == 64 ] ; then
mkdir -p build_vs_64
cd build_vs_64
Expand Down
Loading

0 comments on commit 6731f7c

Please sign in to comment.