(made installer link more nice) |
(added package making) |
||
| Line 82: | Line 82: | ||
* install the compiled package | * install the compiled package | ||
mingw32-make install | mingw32-make install | ||
| + | |||
| + | == Make a binary package for the KDE on windows distribution == | ||
| + | |||
| + | * run the installer in '''Package Manager Mode''' and select '''kdewin-installer(-mingw|-msvc) ''' | ||
| + | |||
| + | * install the above mentioned packages with <make-tool> install | ||
| + | |||
| + | * run kdewin-packager from kde installation bin dir with the following options: | ||
| + | - name <the name of the package> | ||
| + | - version <the package version e.g. 1.2.3 or 20090312 | ||
| + | - type <msvc> or <mingw> depending on the type of used compiler | ||
| + | - root <the install root where the package has been installed into> | ||
| + | - srcroot <the root of the source package tree> | ||
| + | - destdir <the directory where the package will be placed into> | ||
This page describes (re)building of KDE binary packages using the kdewin distribution.
Applications build in this way will not have debugging support because the packages build in release mode do not have any debug symbols. If you need debug symbols you should use the Windows emerge tool
It is assumed that KDE is installed using the KDEWin gui or console installer in %PROGRAMFILES%\kde and a developer tries to recompile the kdeedu binary package. It is also assumed that the KDE installation tree is empty or contains only packages for the related compiler.
"%PROGRAMFILES%\Microsoft Platform SDK for Windows Server 2003 R2\setenv.cmd"
set PATH=%PROGRAMFILES%\kde\bin;%PATH%
cd %PROGRAMFILES%\kde\src
mkdir kdeedu-msvc-build && cd kdeedu-msvc-build
cmake.exe -G "NMake Makefiles" ..\kdeedu-msvc-4.1.3 -DCMAKE_INCLUDE_PATH=%PROGRAMFILES%\kde\include -DCMAKE_LIBRARY_PATH=%PROGRAMFILES%\kde\lib -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%PROGRAMFILES%\kde
nmake
nmake install
set PATH=\Mingw\bin;%PATH%
set PATH=%PROGRAMFILES%\kde\bin;%PATH%
cd %PROGRAMFILES%\kde\src
mkdir kdeedu-mingw-build && cd kdeedu-mingw-build
cmake.exe -G "MinGW Makefiles" ..\kdeedu-mingw-4.1.3 -DCMAKE_INCLUDE_PATH=%PROGRAMFILES%\kde\include -DCMAKE_LIBRARY_PATH=%PROGRAMFILES%\kde\lib -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%PROGRAMFILES%\kde
mingw32-make
mingw32-make install
- name <the name of the package> - version <the package version e.g. 1.2.3 or 20090312 - type <msvc> or <mingw> depending on the type of used compiler - root <the install root where the package has been installed into> - srcroot <the root of the source package tree> - destdir <the directory where the package will be placed into>