]> O.S.I.I.S - jp/vkvg.git/commitdiff
Update linux_build_tutorial
authorJoão Oliveira <44142506+Joaopmoliveira@users.noreply.github.com>
Mon, 4 May 2020 20:23:39 +0000 (21:23 +0100)
committerGitHub <noreply@github.com>
Mon, 4 May 2020 20:23:39 +0000 (21:23 +0100)
doc/linux_build_tutorial

index 378eac25d311703f3f2cd456d8036da525cd0366..dc7b93abc4aa138e3fd67ef16ef762606622ac2a 100644 (file)
@@ -1 +1,10 @@
-build
+
+```bash
+git clone https://github.com/jpbruyere/vkvg.git     # Download source code from github
+cd vkvg                                             # Enter the source directory
+git submodule update --init --recursive             # Dowload vkhelpers sources
+mkdir build                                        # Create build directory
+cd build
+cmake ..                                           # Run CMake, optionaly setup glslc path
+make                                               # Run Make
+```