Found a little problem with the Windows install.bat file. The first few
lines are:
@echo off
if "%1" == "" goto error
set BASE_DIR=c:\mysql++
set INST_INC_DIR=%BASE_DIR%\include
set INST_LIB_DIR=%BASE_DIR%\%1
The error lines are:
:error
echo usage: install [subdir]
echo.
echo Installs MySQL++ into the given subdirectory of %BASE_DIR%
As it stands, %BASE_DIR% is not defined before the error is called, so
the error doesn't output what is expected. I suggest moving the
definitions up before the test to see if a parameter has been input. I
would also suggest that the information line be:
echo Installs MySQL++ library files in debug and release subfolders
of %BASE_DIR%\[subdir].
--
MySQL++ Mailing List
For list archives: http://lists.mysql.com/plusplus
To unsubscribe: http://lists.mysql.com/plusplus?unsu...ie.nctu.edu.tw
--------------070108060808080504030208--
Found a little problem with the Windows install.bat file.
This file is vestigial from the makemake days in MySQL++ v2.0. If
you're interested in making it work again, by all means, hack away and
send in the new version.
--
MySQL++ Mailing List
For list archives: http://lists.mysql.com/plusplus
To unsubscribe: http://lists.mysql.com/plusplus?unsu...ie.nctu.edu.tw