File: CreateVisualStudioProjects.bat

package info (click to toggle)
myodbc 3.51.15r409-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,980 kB
  • ctags: 1,592
  • sloc: ansic: 24,288; sh: 9,162; cpp: 1,848; makefile: 932; perl: 43
file content (66 lines) | stat: -rw-r--r-- 1,330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@ECHO OFF
REM #########################################################
REM 
REM \brief  Create Visual Studio project files.
REM
REM         The Visual Studio project files may already exist
REM         but this can be used to create/recreate them. The Visual 
REM         Studio project files are created using qmake and 
REM         the qmake project files. So if the qmake project files
REM         change for some reason - it may be a good idea to use
REM         this to recreate the corresponding Visual Studio 
REM         project files.
REM 
REM         A Visual Studio 'Solution' containing all the projects
REM         may be found in sources.
REM 
REM \note   The command-line is the preferred method of building 
REM         on all platforms - including MS Windows.
REM 
REM \sa     root.pro
REM
REM #########################################################

ECHO Creating Visual Studio project files...

ECHO MYODBCDbg...
cd MYODBCDbg\MYODBCDbgLib
qmake -t vclib
cd ..
qmake
cd ..

ECHO dltest...
cd dltest
qmake -t vcapp
cd ..

ECHO util...
cd util
qmake -t vclib
cd ..

ECHO setup
cd setup
qmake -t vclib
cd ..

ECHO installer...
cd installer
qmake -t vcapp
cd ..

ECHO monitor...
cd monitor
qmake -t vcapp
cd ..

ECHO dsn-editor...
cd dsn-editor
qmake -t vcapp
cd ..

ECHO driver...
cd driver
qmake -t vclib
cd ..