diff options
author | unknown <reggie@big_geek.> | 2006-01-31 07:52:16 -0600 |
---|---|---|
committer | unknown <reggie@big_geek.> | 2006-01-31 07:52:16 -0600 |
commit | 3fa2273ac1c0295e74a32473f3c97d661a634715 (patch) | |
tree | 1d5c7765dcf5305b56d3b58e07182cd12918370e /win/build-vs71.bat | |
parent | 07104f36f03bb09f7d51979843392532a662841d (diff) | |
download | mariadb-git-3fa2273ac1c0295e74a32473f3c97d661a634715.tar.gz |
initial cmake fileset. It is not production ready but stable enough to start working with
win/build-vs71.bat:
batch file to build project files for Visual Studio 2003
win/build-vs8.bat:
batch file to build project files for Visual Studio 2005
win/cmakefiles/base:
cmakefile that will later be moved into the target directory
win/cmakefiles/bdb:
cmakefile that will later be moved into the target directory
win/cmakefiles/client:
cmakefile that will later be moved into the target directory
win/cmakefiles/dbug:
cmakefile that will later be moved into the target directory
win/cmakefiles/deploy.bat:
cmakefile that will later be moved into the target directory
win/cmakefiles/extra:
cmakefile that will later be moved into the target directory
win/cmakefiles/heap:
cmakefile that will later be moved into the target directory
win/cmakefiles/innobase:
cmakefile that will later be moved into the target directory
win/cmakefiles/myisam:
cmakefile that will later be moved into the target directory
win/cmakefiles/myisammrg:
cmakefile that will later be moved into the target directory
win/cmakefiles/mysys:
cmakefile that will later be moved into the target directory
win/cmakefiles/regex:
cmakefile that will later be moved into the target directory
win/cmakefiles/sql:
cmakefile that will later be moved into the target directory
win/cmakefiles/strings:
cmakefile that will later be moved into the target directory
win/cmakefiles/taocrypt:
cmakefile that will later be moved into the target directory
win/cmakefiles/vio:
cmakefile that will later be moved into the target directory
win/cmakefiles/yassl:
cmakefile that will later be moved into the target directory
win/cmakefiles/zlib:
cmakefile that will later be moved into the target directory
win/config-handlerton.js:
javascript file for updating handlerton.cc based on configure options
win/config-version.js:
javascript file for updating mysql_version.h based on configure.in data
win/configure.js:
basic configure javascript
Diffstat (limited to 'win/build-vs71.bat')
-rw-r--r-- | win/build-vs71.bat | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/win/build-vs71.bat b/win/build-vs71.bat new file mode 100644 index 00000000000..263ee13f895 --- /dev/null +++ b/win/build-vs71.bat @@ -0,0 +1,7 @@ +@echo off +win32\cmakefiles\deploy +del cmakecache.txt +copy win32\vs71cache.txt cmakecache.txt +cmake -G "Visual Studio 7 .NET 2003" +copy cmakecache.txt win32\vs71cache.txt + |