diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-10-21 01:28:51 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-10-21 01:28:51 +0000 |
| commit | 952eb4e4006abc4eebea532dfd95af1a8488a284 (patch) | |
| tree | 27b8ec0425ebafe2021e20b2f8c22ee5de975915 | |
| parent | Removed existing glslang folder (diff) | |
| download | DiligentCore-952eb4e4006abc4eebea532dfd95af1a8488a284.tar.gz DiligentCore-952eb4e4006abc4eebea532dfd95af1a8488a284.zip | |
Added glslang as submodule
| -rw-r--r-- | .gitmodules | 3 | ||||
| m--------- | External/glslang | 0 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | appveyor.yml | 3 |
4 files changed, 12 insertions, 0 deletions
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 +Subproject fa61e4c061c18b1261ba4b0a0b5396285038098 @@ -16,6 +16,12 @@ in the master repository. | Win32/Universal Windows | [](https://ci.appveyor.com/project/DiligentGraphics/diligentcore) | | Linux/MacOS/iOS | [](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 |
