This has been tested and found to work in these systems; Windows, macOS and Linux.
$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .
If you have multiple cores, you could speed up compilation by:
$ cmake --build . -j n
Where n
is the number of cores you wish to use to compile.
The executables should be in the build
directory. Launch them in the terminal, for example:
$ ./Hello_Window
The executables should be in the build/Debug
directory.
# | Lesson | Screenshot |
---|---|---|
1 | Hello window | |
2 | Hello triangle | |
3 | Hello rectangle | |
4 | Shaders | |
5 | Textures | |
6 | Transformations | |
7 | Coordinate systems | |
8 | Hello noise | |
9 | Hello ImGUI |