From 952eb4e4006abc4eebea532dfd95af1a8488a284 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sat, 20 Oct 2018 18:28:51 -0700 Subject: Added glslang as submodule --- .gitmodules | 3 +++ External/glslang | 1 + README.md | 6 ++++++ appveyor.yml | 3 +++ 4 files changed, 13 insertions(+) create mode 100644 .gitmodules create mode 160000 External/glslang diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..a5853764 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "External/glslang"] + path = External/glslang + url = https://github.com/DiligentGraphics/glslang.git diff --git a/External/glslang b/External/glslang new file mode 160000 index 00000000..fa61e4c0 --- /dev/null +++ b/External/glslang @@ -0,0 +1 @@ +Subproject commit fa61e4c061c18b1261ba4b0a0b5396285038098c diff --git a/README.md b/README.md index fa950b83..5f23c931 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ in the master repository. | Win32/Universal Windows | [![Build Status](https://ci.appveyor.com/api/projects/status/github/DiligentGraphics/DiligentCore?svg=true)](https://ci.appveyor.com/project/DiligentGraphics/diligentcore) | | Linux/MacOS/iOS | [![Build Status](https://travis-ci.org/DiligentGraphics/DiligentCore.svg?branch=master)](https://travis-ci.org/DiligentGraphics/DiligentCore) | +# Clonning the Repository + +To get the repository and all submodules, use the following command: + + git clone --recursive https://github.com/DiligentGraphics/DiligentCore.git + # Repository structure diff --git a/appveyor.yml b/appveyor.yml index 048b9a2e..0b5b035d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -51,6 +51,9 @@ environment: clone_folder: c:\projects\DiligentCore install: + # clone submodules + - git submodule update --init --recursive + # Install a recent CMake - set CMAKE_URL="https://cmake.org/files/v3.11/cmake-3.11.4-win64-x64.zip" - appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip -- cgit v1.2.3