4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-09 01:09:34 +00:00

get rid of doublequotes

svn path=/trunk/kdesupport/qca/; revision=661268
This commit is contained in:
Justin Karneges 2007-05-05 01:40:15 +00:00
parent 25824689fd
commit 6364f8e54d

@ -10,50 +10,50 @@ if "%1"=="ds" goto debug_static
goto usage
:usage
echo "usage: configwin [mode]"
echo "modes:"
echo " rd release and debug, dynamic"
echo " r release, dynamic"
echo " d debug, dynamic"
echo " rds release and debug, static"
echo " rs release static"
echo " ds debug static"
echo usage: configwin [mode]
echo modes:
echo rd release and debug, dynamic
echo r release, dynamic
echo d debug, dynamic
echo rds release and debug, static
echo rs release static
echo ds debug static
goto end
:debug_and_release
echo "Configuring for release and debug, dynamic"
echo "CONFIG += debug_and_release build_all" > conf_win.pri
echo "CONFIG += debug" > confapp_win.pri
echo Configuring for release and debug, dynamic
echo CONFIG += debug_and_release build_all > conf_win.pri
echo CONFIG += debug > confapp_win.pri
goto done
:release
echo "Configuring for release, dynamic"
echo "CONFIG += release" > conf_win.pri
echo "CONFIG += release" > confapp_win.pri
echo Configuring for release, dynamic
echo CONFIG += release > conf_win.pri
echo CONFIG += release > confapp_win.pri
goto done
:debug
echo "Configuring for debug, dynamic"
echo "CONFIG += debug" > conf_win.pri
echo "CONFIG += debug" > confapp_win.pri
echo Configuring for debug, dynamic
echo CONFIG += debug > conf_win.pri
echo CONFIG += debug > confapp_win.pri
goto done
:debug_and_release_static
echo "Configuring for release and debug, static"
echo "CONFIG += debug_and_release build_all staticlib" > conf_win.pri
echo "CONFIG += debug" > confapp_win.pri
echo Configuring for release and debug, static
echo CONFIG += debug_and_release build_all staticlib > conf_win.pri
echo CONFIG += debug > confapp_win.pri
goto done
:release_static
echo "Configuring for release, static"
echo "CONFIG += release staticlib" > conf_win.pri
echo "CONFIG += release" > confapp_win.pri
echo Configuring for release, static
echo CONFIG += release staticlib > conf_win.pri
echo CONFIG += release > confapp_win.pri
goto done
:debug_static
echo "Configuring for debug, static"
echo "CONFIG += debug staticlib" > conf_win.pri
echo "CONFIG += debug" > confapp_win.pri
echo Configuring for debug, static
echo CONFIG += debug staticlib > conf_win.pri
echo CONFIG += debug > confapp_win.pri
goto done
:done