Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 2.55 KB

HowToBuildWin.md

File metadata and controls

58 lines (43 loc) · 2.55 KB

Build Vocaluxe - HowTo (Windows)

  • Navigate to the right repository: usually Vocaluxe Main

  • Navigate to the right branch: usually develop (The main branch of Vocaluxe)

    branch

  • Copy the URL of the corresponding git file

    url

  • Make sure Visual Studio 2012/2013(?) is installed

  • Clone the repository and open it

    Method A: Use Visual Studio (2013+)'s git client:

    • Start Visual Studio
    • VIEW->Team Explorer
    • Click on the Connect to a Team Project button inside the Team Explorer
    • Click on Clone under Local Git Repositories
    • Enter [theCopiedGitUrl] in the first field
    • Enter a target folder in the second field
    • Click clone vsclone

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 and x86 or x64 (if unsure -> select x86)

  • Build the projects by clicking "Build"->"Build solution" or just press Control+Shift+B

    build

  • Check if your build was successful buildsuccess

  • 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!