changes for using Visual Studio express and using a project file which was generated by qmake

This commit is contained in:
Volker Fischer 2013-01-24 09:55:41 +00:00
parent 60823ae544
commit 070be40117

View file

@ -5,13 +5,17 @@ set NSIS_PATH=%PROGRAMFILES%\NSIS
if "%VSINSTALLDIR%" == "" goto vsenvproblem if "%VSINSTALLDIR%" == "" goto vsenvproblem
rem clean and compile solution ------------------------------------------------- rem create visual studio project file ------------------------------------------
devenv llcon.sln /clean "Release|Win32" cd ..
set QMAKESPEC=win32-msvc2010
qmake -tp vc
call MocQT rem clean and compile solution -------------------------------------------------
devenv llcon.sln /build "Release|Win32" vcexpress llcon.vcxproj /clean "Release|Win32"
vcexpress llcon.vcxproj /build "Release|Win32"
rem create installer ----------------------------------------------------------- rem create installer -----------------------------------------------------------
cd windows
"%NSIS_PATH%\makensis.exe" installer.nsi "%NSIS_PATH%\makensis.exe" installer.nsi
move llconinstaller.exe ../deploy/llcon-version-installer.exe move llconinstaller.exe ../deploy/llcon-version-installer.exe