Skip to content
Paul Smedley edited this page Jan 31, 2025 · 6 revisions

Welcome to the qt6-base-os2 wiki!

Building qtbase

I use a conf.cmd with the following:
dash ../configure -prefix /qt6-6.2.x -no-opengl -release -system-sqlite -openssl-linked -no-pch -- -DQT_BUILD_EXAMPLES=ON -DQT_BUILD_TESTS=OFF 2>&1 | tee configure.log

disabling QT_BUILD_EXAMPLES significantly speeds things up

and build with:
set beginlibpath=u:\dev\qt6-base-os2\build\lib
this is important as some components (eg rcc.exe) depend on the just built qt DLLs, and unless beginlibpath is set correctly, it can't find them. cmake --build . >stdout 2>stderr

Clone this wiki locally