-
Navigate to the right repository: usually Vocaluxe Main
-
Navigate to the right branch: usually develop (The main branch of Vocaluxe)
-
Copy the
URL
of the corresponding git file -
Make sure Visual Studio 2012/2013(?) is installed
-
Clone the repository and open it
Method A: Use Visual Studio (2013+)'s git client:
Method B: Use commandline git client:
* Make sure git is installed git-scm
* Open a git bash
(there should be a link in the start menu)
or a normal commandline if you have added git to the PATH
variable
* Navigate to the folder where git should create the Vocaluxe project folder
```
cd [PathToYourFolder]
```
* Clone the repository (could take some time...)
```
git clone [theCopiedGitUrl]
```
![clone](https://cloud.githubusercontent.com/assets/5115160/4995707/bc5aa6da-69c2-11e4-95cb-71ac7b0c3fc8.png)
* Now you should find a Folder `Vocaluxe` in the given directory -> navigate into it
* Open the file `Vocaluxe.sln` with Visual Studio
-
Configure the build target to
ReleaseWin
andx86
orx64
(if unsure -> selectx86
) -
Build the projects by clicking
"Build"->"Build solution"
or just pressControl
+Shift
+B
-
YOUR build should have appeared here:
[PathToYourFolder]\Vocaluxe\Output
-
Run
Vocaluxe.exe
or copy the whole folder to a location of your choice -
Have fun!