Tuesday, August 21, 2007
Monday, August 20, 2007
How to work Teambots with Eclipse
1. Install Teambot at %tb%
2. Install Eclipse-JDT at %eclipse%
3. Edit demo.bat from %tb%Domains\SoccerBots\teams
Add CLASSPATH for %tb%src;%tb%Domains\SoccerBots\teams
4. Start Eclipse project file with existing code
5. Select %tb%Domains\SoccerBots\teams directory
6. Check to allow output will be on source directory
7. Add buildpath for classpath %tb%src on next page
You're ready for code
2. Install Eclipse-JDT at %eclipse%
3. Edit demo.bat from %tb%Domains\SoccerBots\teams
Add CLASSPATH for %tb%src;%tb%Domains\SoccerBots\teams
4. Start Eclipse project file with existing code
5. Select %tb%Domains\SoccerBots\teams directory
6. Check to allow output will be on source directory
7. Add buildpath for classpath %tb%src on next page
You're ready for code
Thursday, August 16, 2007
QT4.3.1 MinGW static configure setting
FROM QTVARS.BAT
set QTDIR=C:\Qt\4.3.1-static
set PATH=C:\Qt\4.3.1-static\bin
set PATH=%PATH%;C:\MinGW\bin
set PATH=%PATH%;%SystemRoot%\System32
set QMAKESPEC=win32-g++
set INCLUDE=
set LIB=
ON CONFIGURE.EXE
-static
-debug-and-release (option)
-qt-sql-odbc
-qt-sql-sqlite
-no-qt3support (option)
MAKEFILE
mingw32-make.exe sub-src
set QTDIR=C:\Qt\4.3.1-static
set PATH=C:\Qt\4.3.1-static\bin
set PATH=%PATH%;C:\MinGW\bin
set PATH=%PATH%;%SystemRoot%\System32
set QMAKESPEC=win32-g++
set INCLUDE=
set LIB=
ON CONFIGURE.EXE
-static
-debug-and-release (option)
-qt-sql-odbc
-qt-sql-sqlite
-no-qt3support (option)
MAKEFILE
mingw32-make.exe sub-src
Saturday, August 04, 2007
Qt 4.3: Deploying an Application on Qt/Windows
Qt 4.3: Deploying an Application on Qt/Windows
In brief
(1) Compile QT with -static option
(2) qmake -project -config release "CONFIG += static" "CONFIG += embed_manifest_exe" "CONFIG-=embed_manifest_dll"
(3) qmake
(4) nmake
(5) package executable with\VC\redist\\Microsoft.VC80.CRT directory
* Haven't find way to integrated with IDE yet, however it could used only for releasing
* OpenCV is better to work with DLLs
In brief
(1) Compile QT with -static option
(2) qmake -project -config release "CONFIG += static" "CONFIG += embed_manifest_exe" "CONFIG-=embed_manifest_dll"
(3) qmake
(4) nmake
(5) package executable with
* Haven't find way to integrated with IDE yet, however it could used only for releasing
* OpenCV is better to work with DLLs
QT OpenSource with Visual Studio
SourceForge.net: Files
QT Opensource patch for Visual Studio
Download QT open source for win32
Download QT patch
Unzip them
Use MSVC command prompt
set QTDIR=%SOMEWHERE%
run patch
qconfigure.bat msvc2005 %OTHER OPTIONS%
follow the screen instruction
set PATH=%PATH%;%QTDIR%/bin
set QMAKESPEC=win32-msvc2005
qmake -project -t vcapp
qmake
QT Opensource patch for Visual Studio
Instruction
Download QT open source for win32
Download QT patch
Unzip them
Use MSVC command prompt
set QTDIR=%SOMEWHERE%
run patch
qconfigure.bat msvc2005 %OTHER OPTIONS%
follow the screen instruction
To build solution project file
set PATH=%PATH%;%QTDIR%/bin
set QMAKESPEC=win32-msvc2005
qmake -project -t vcapp
qmake
Subscribe to:
Posts (Atom)