From 85bd3cfc3154f79db5de0423cb5a084c8b817f38 Mon Sep 17 00:00:00 2001 From: Shiv Trivedi Date: Tue, 10 Dec 2019 13:53:19 +0000 Subject: [PATCH 1/2] Add run on repl.it badge to README This pull request configures this repository to be run on Repl.it. It adds a `.replit` configuration file and a Repl.it badge to the `README`. You can read more about running repos on Repl.it [here](https://docs.repl.it/repls/dot-replit), or view the Repl [here](https://repl.it/@shiv213/yaml-cpp). --- .replit | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 0000000..eaec556 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "cpp" +run = "language = \"cpp\" run = \"cd build && cmake .. && cmake --build .\"" diff --git a/README.md b/README.md index 92bc90e..23d8e92 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# yaml-cpp [![Build Status](https://travis-ci.org/jbeder/yaml-cpp.svg?branch=master)](https://travis-ci.org/jbeder/yaml-cpp) [![Documentation](https://codedocs.xyz/jbeder/yaml-cpp.svg)](https://codedocs.xyz/jbeder/yaml-cpp/) +# yaml-cpp [![Build Status](https://travis-ci.org/jbeder/yaml-cpp.svg?branch=master)](https://travis-ci.org/jbeder/yaml-cpp) [![Documentation](https://codedocs.xyz/jbeder/yaml-cpp.svg)](https://codedocs.xyz/jbeder/yaml-cpp/) [![Run on Repl.it](https://repl.it/badge/github/jbeder/yaml-cpp)](https://repl.it/github/jbeder/yaml-cpp) yaml-cpp is a [YAML](http://www.yaml.org/) parser and emitter in C++ matching the [YAML 1.2 spec](http://www.yaml.org/spec/1.2/spec.html). From 6a5829f8cc426ac43d9ab03b4963ceba304c3075 Mon Sep 17 00:00:00 2001 From: Shiv Trivedi Date: Thu, 26 Dec 2019 00:49:07 -0500 Subject: [PATCH 2/2] Update .replit --- .replit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.replit b/.replit index eaec556..95a4dae 100644 --- a/.replit +++ b/.replit @@ -1,2 +1,2 @@ language = "cpp" -run = "language = \"cpp\" run = \"cd build && cmake .. && cmake --build .\"" +run = "mkdir build && cd build && cmake .. && cmake --build ./"