Skip to content

Latest commit

 

History

History

src

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Build and run

With Qt Creator

Open file CMakeLists.txt in Qt Creator

With make

$ mkdir build
$ cd build
$ cmake -S .. -B .
$ make
$ ./lab_03

With ninja

$ mkdir build
$ cd build
$ cmake -S .. -B . -G Ninja
$ ninja
$ ./lab_03