From 53b69d10501f5ebf4d7aaf6e36d89cdecd392c75 Mon Sep 17 00:00:00 2001 From: Geoffrey Hunter Date: Sun, 19 May 2019 10:45:05 -0700 Subject: [PATCH] Added MIT license file and fixed build status badge in README. --- .vscode/c_cpp_properties.json | 17 +++++++++++++---- LICENSE.txt | 21 +++++++++++++++++++++ README.rst | 4 ++-- 3 files changed, 36 insertions(+), 6 deletions(-) create mode 100644 LICENSE.txt diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index f8ca022..0ee9eae 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -21,7 +21,10 @@ "macFrameworkPath": [ "/System/Library/Frameworks", "/Library/Frameworks" - ] + ], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "c++17" }, { "name": "Linux", @@ -54,7 +57,10 @@ ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" - } + }, + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "c++17" }, { "name": "Win32", @@ -74,8 +80,11 @@ ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" - } + }, + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "c++17" } ], - "version": 3 + "version": 4 } \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..32744c4 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Geoffrey Benjamin Mark Hunter + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.rst b/README.rst index 4fdb09d..f7792b8 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ CppLinuxSerial Serial port library written in C++ ---------------------------------- -.. image:: https://travis-ci.org/mbedded-ninja/CppLinuxSerial.svg?branch=master - :target: https://travis-ci.org/mbedded-ninja/CppLinuxSerial +.. image:: https://travis-ci.org/gbmhunter/CppLinuxSerial.svg?branch=master + :target: https://travis-ci.org/gbmhunter/CppLinuxSerial .. role:: bash(code) :language: bash -- libgit2 0.21.4