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 ..
|