You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
454 B
17 lines
454 B
@echo off |
|
REM install qmake feature file pointing to the current directory |
|
|
|
if not defined QTDIR goto err |
|
echo QSERIALPORT_INCDIR = "%CD%\include" > qserialport.prf |
|
echo QSERIALPORT_LIBDIR = "%CD%\lib" >> qserialport.prf |
|
type qserialport.prf.in >> qserialport.prf |
|
copy qserialport.prf "%QTDIR%\mkspecs\features" |
|
|
|
echo Installed qserialport.prf as a qmake feature. |
|
goto end |
|
|
|
:err |
|
echo Error: QTDIR not set (example: set QTDIR=C:\Qt\4.5.2). |
|
goto end |
|
|
|
:end
|
|
|