5 lines
265 B
Plaintext
5 lines
265 B
Plaintext
|
#!/bin/bash
|
||
|
echo "Preparing to build MelonVPN"
|
||
|
msbuild MelonVPN.sln -m /t:MelonVPNCore /t:MelonVPNConnectedClientUpdate /t:MelonVPNDaemon /t:MelonVPNClient /p:Configuration=Release /p:Platform=x86
|
||
|
echo "Run \"./install\" to install all the components for MelonVPN"
|