Skip to content

Instantly share code, notes, and snippets.

@jangsoopark
Created May 9, 2018 09:35
Show Gist options
  • Save jangsoopark/6a05c992c18852712d3999214bf31115 to your computer and use it in GitHub Desktop.
Save jangsoopark/6a05c992c18852712d3999214bf31115 to your computer and use it in GitHub Desktop.
requirements : CMAKE, Visual Studio 2015
mkdir build32
pushd build32
cmake -G "Visual Studio 14 2015" ../
popd
mkdir build64
pushd build64
cmake -G "Visual Studio 14 2015 Win64" ../
popd
@jangsoopark
Copy link
Author

For visual studio 2017
You have to change the line 3 and 8 as a

cmake -G "Visual Studio 15 2017" ../
cmake -G "Visual Studio 15 2017 Win64" ../

@jangsoopark
Copy link
Author

The location of batch file should be VTM-?.?rc?/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment