Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 976 Bytes

README.md

File metadata and controls

56 lines (40 loc) · 976 Bytes

Strings

Contains string examples.

  • 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.

Generate and build

Qt Creator

To build these projects, open Strings.pro file with Qt Creator.

CMake

To build this project, open "Terminal" and type following lines:

Set CMAKE_PREFIX_PATH with Qt6 install path.

Windows :

mkdir build
cd build
cmake ..
start ./Strings.sln

macOS :

mkdir build
cd build
cmake .. -G "Xcode"
open ./Strings.xcodeproj

Linux with Code::Blocks :

mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./Strings.cbp > /dev/null 2>&1

Linux :

mkdir build
cd build
cmake .. 
cmake --build . --config Debug
./AnyProject