shows how to use Qt widgets only by programming code (c++17).
- HelloWorldConsole The classic first application "Hello, World!" with QTextStream stream.
- List shows how to use QList.
- Console shows how to use QTextStream stream with stdin and stdout.
- ConsoleColor shows how to use QTextStream stream with stdout and ANSI colors.
- StringSplit shows how to use QString::split method.
- StringUnicode shows how to use QTextStream and QString with unicode.
- StringUnicode2 shows how to use QTextStream and QString with unicode.
To build these projects, open Qt.Core.pro
file with Qt Creator.
To build this project, open "Terminal" and type following lines:
Set CMAKE_PREFIX_PATH
with Qt6 install path.
mkdir build
cd build
cmake ..
start ./Qt.Core.sln
mkdir build
cd build
cmake .. -G "Xcode"
open ./Qt.Core.xcodeproj
mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./Qt.Core.cbp > /dev/null 2>&1
mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject