From: João Oliveira <44142506+Joaopmoliveira@users.noreply.github.com> Date: Mon, 4 May 2020 20:23:39 +0000 (+0100) Subject: Update linux_build_tutorial X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=0d2966fdcdf6fe0209dcfc5725a4f69c8c867131;p=jp%2Fvkvg.git Update linux_build_tutorial --- 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 +```