-
-
Notifications
You must be signed in to change notification settings - Fork 351
Compile on Windows
Patricio Gonzalez Vivo edited this page Dec 14, 2022
·
8 revisions
To compile this project you will need:
- Visual Studio 2019 or higher. Make sure to check "Desktop development with C++" and "Universal Windows Platform development" are installed
- A git client
- CMake (through Scoop is recommended)
git clone https://github.com/patriciogonzalezvivo/glslViewer.git
cd glslViewer
git submodule init
git submodule update
cmake .
This will create a .sln
solution file which you can open with Visual Studio
Once you open the .sln
solution file on Visual Studio, you can compile it by using Ctr
+Shift
+B
.
In order to launch glslViewer anywhere on your system (doesn't matter in which directory you are in the terminal/console) you will need to find the glslViewer.exe
into a System Path folder.
For that you have two options:
- adding the folder where
glslViewer.exe
is into your System Path for which you can follow this directions - moving
glslViewer.exe
to an existing System Path folder
Note: If you are installing in WSL2, other users have pointed to this article as a useful resource