Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
SoftEtherVPN/configure.cmd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
30 lines (24 sloc)
750 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo --------------------------------------------------------------------- | |
echo SoftEther VPN for Windows | |
echo. | |
echo Copyright (c) all contributors on SoftEther VPN project in GitHub. | |
echo Copyright (c) Daiyuu Nobori, SoftEther Project at University of Tsukuba, and SoftEther Corporation. | |
echo. | |
echo Read and understand README, LICENSE and WARNING before use. | |
echo --------------------------------------------------------------------- | |
echo. | |
echo Welcome to the corner-cutting configure script ! | |
echo. | |
if not exist "tmp" ( | |
mkdir tmp | |
) | |
cd tmp | |
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -G "NMake Makefiles" .. | |
if %errorlevel% == 0 ( | |
echo. | |
echo The Makefile is generated. Run 'nmake' to build SoftEther VPN. | |
) else ( | |
cd .. | |
exit /b 1 | |
) |