From 0d2966fdcdf6fe0209dcfc5725a4f69c8c867131 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20Oliveira?= <44142506+Joaopmoliveira@users.noreply.github.com> Date: Mon, 4 May 2020 21:23:39 +0100 Subject: [PATCH] Update linux_build_tutorial --- doc/linux_build_tutorial | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/linux_build_tutorial b/doc/linux_build_tutorial index 378eac2..dc7b93a 100644 --- a/doc/linux_build_tutorial +++ b/doc/linux_build_tutorial @@ -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 +``` -- 2.47.3