A quiz-like application where you have to answear the question you are shown by selecting a part of the image.
version: 1.0.2
The fastest way to build the project on Windows is by installing VS Code and installing the CMakeTools extension and building the project with the help of it.
So, here's what you need to do step by step:
- Install a C/C++ toolchain (such as Clang or GCC) and set it up accordingly
- Install a build system (such as Ninja)
- Install Visual Studio Code
- Inside Visual Studio Code, go to the "extensions" tab and install CMakeTools (the one published by Microsoft)
- By installing the CMakeTools extension a new tab with the icon of CMake will be created, go to that tab and configure the build options
- After you finish configuring your build options, you can press F7 and wait for the project to be built
- Your freshly built executable (together with the shared libraries) should be in the
builddirectory
-
install gcc (if you don't have it already), cmake and make
sudo pacman -Syusudo pacman -S gcc make cmake -
Create a directory called
buildand generate the CMake files inside of it, then build the projectmkdir buildcmake -S . -B buildcmake --build build -
Your executable file should be in the
builddirectory, as well as the other .so files (if you choose to dynamically link the project)