blob: db92d9c3b721abda90fc317bbdf46d5b4b3c36f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@echo off
REM - First we need to copy all the cmakelists to the proper folders
cd win\cmakefiles
call deploy.bat
cd ..\..
del cmakecache.txt
copy win\vs71cache.txt cmakecache.txt
cmake -G "Visual Studio 7 .NET 2003"
copy cmakecache.txt win\vs71cache.txt
|