Update submodule urls to Samsung org (#302)

Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
This commit is contained in:
Hyukwoo Park 2019-07-03 16:00:43 +09:00 committed by GitHub
commit 4e4dd698a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

14
.gitmodules vendored
View file

@ -1,30 +1,30 @@
[submodule "third_party/GCutil"]
path = third_party/GCutil
url = https://github.com/lws-project/gcutil.git
url = https://github.com/Samsung/gcutil.git
ignore = untracked
[submodule "third_party/checked_arithmetic"]
path = third_party/checked_arithmetic
url = https://github.com/lws-project/checked_arithmetic.git
url = https://github.com/Samsung/checked_arithmetic.git
ignore = untracked
[submodule "third_party/double_conversion"]
path = third_party/double_conversion
url = https://github.com/lws-project/double_conversion.git
url = https://github.com/Samsung/double_conversion.git
ignore = untracked
[submodule "third_party/rapidjson"]
path = third_party/rapidjson
url = https://github.com/lws-project/rapidjson.git
url = https://github.com/Samsung/rapidjson.git
ignore = untracked
[submodule "third_party/yarr"]
path = third_party/yarr
url = https://github.com/lws-project/yarr.git
url = https://github.com/Samsung/yarr.git
ignore = untracked
[submodule "third_party/windows/icu"]
path = third_party/windows/icu
url = https://github.com/lws-project/icu.git
url = https://github.com/Samsung/icu.git
ignore = untracked
[submodule "test/vendortest"]
path = test/vendortest
url = https://github.com/lws-project/js_vendor_tc.git
url = https://github.com/Samsung/js_vendor_tc.git
ignore = untracked
[submodule "test/test262"]
path = test/test262

View file

@ -1,7 +1,7 @@
# Escargot
[![Travis CI Build Status](https://travis-ci.org/lws-project/escargot.svg?branch=master)](https://travis-ci.org/lws-project/escargot)
[![SonarCloud Status](https://sonarcloud.io/api/project_badges/measure?project=lws-project_escargot&metric=alert_status)](https://sonarcloud.io/dashboard?id=lws-project_escargot)
[![Travis CI Build Status](https://travis-ci.org/Samsung/escargot.svg?branch=master)](https://travis-ci.org/Samsung/escargot)
[![SonarCloud Status](https://sonarcloud.io/api/project_badges/measure?project=Samsung_escargot&metric=alert_status)](https://sonarcloud.io/dashboard?id=Samsung_escargot)
## Prerequisites
@ -35,7 +35,7 @@ export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig"
## Build Escargot
```sh
git clone https://github.com/lws-project/escargot.git
git clone https://github.com/Samsung/escargot.git
cd escargot
git submodule update --init third_party
cmake -DESCARGOT_HOST=linux -DESCARGOT_ARCH=x64 -DESCARGOT_MODE=release -DESCARGOT_OUTPUT=bin -GNinja