Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: ================================================================================================
- :: filename: build_cmake.bat
- :: purpose : cmd.exe wrapper for cmake build file
- :: ================================================================================================
- :: cmake -G -> see available generators
- SET GENERATOR=Visual Studio 15 2017 Win64
- SET OUTDIR=build_vs15_2017_x64
- :: Delete Cache (Full rebuild)
- DEL CMakeCache.txt
- :: Make build files
- cmake -B%OUTDIR% -H. -G"%GENERATOR%"
Advertisement