Commit 53b69d10501f5ebf4d7aaf6e36d89cdecd392c75

Authored by Geoffrey Hunter
1 parent 37d16763

Added MIT license file and fixed build status badge in README.

.vscode/c_cpp_properties.json
@@ -21,7 +21,10 @@ @@ -21,7 +21,10 @@
21 "macFrameworkPath": [ 21 "macFrameworkPath": [
22 "/System/Library/Frameworks", 22 "/System/Library/Frameworks",
23 "/Library/Frameworks" 23 "/Library/Frameworks"
24 - ] 24 + ],
  25 + "compilerPath": "/usr/bin/gcc",
  26 + "cStandard": "c11",
  27 + "cppStandard": "c++17"
25 }, 28 },
26 { 29 {
27 "name": "Linux", 30 "name": "Linux",
@@ -54,7 +57,10 @@ @@ -54,7 +57,10 @@
54 ], 57 ],
55 "limitSymbolsToIncludedHeaders": true, 58 "limitSymbolsToIncludedHeaders": true,
56 "databaseFilename": "" 59 "databaseFilename": ""
57 - } 60 + },
  61 + "compilerPath": "/usr/bin/gcc",
  62 + "cStandard": "c11",
  63 + "cppStandard": "c++17"
58 }, 64 },
59 { 65 {
60 "name": "Win32", 66 "name": "Win32",
@@ -74,8 +80,11 @@ @@ -74,8 +80,11 @@
74 ], 80 ],
75 "limitSymbolsToIncludedHeaders": true, 81 "limitSymbolsToIncludedHeaders": true,
76 "databaseFilename": "" 82 "databaseFilename": ""
77 - } 83 + },
  84 + "compilerPath": "/usr/bin/gcc",
  85 + "cStandard": "c11",
  86 + "cppStandard": "c++17"
78 } 87 }
79 ], 88 ],
80 - "version": 3 89 + "version": 4
81 } 90 }
82 \ No newline at end of file 91 \ No newline at end of file
LICENSE.txt 0 → 100644
  1 +MIT License
  2 +
  3 +Copyright (c) 2019 Geoffrey Benjamin Mark Hunter
  4 +
  5 +Permission is hereby granted, free of charge, to any person obtaining a copy
  6 +of this software and associated documentation files (the "Software"), to deal
  7 +in the Software without restriction, including without limitation the rights
  8 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9 +copies of the Software, and to permit persons to whom the Software is
  10 +furnished to do so, subject to the following conditions:
  11 +
  12 +The above copyright notice and this permission notice shall be included in all
  13 +copies or substantial portions of the Software.
  14 +
  15 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21 +SOFTWARE.
0 \ No newline at end of file 22 \ No newline at end of file
README.rst
@@ -6,8 +6,8 @@ CppLinuxSerial @@ -6,8 +6,8 @@ CppLinuxSerial
6 Serial port library written in C++ 6 Serial port library written in C++
7 ---------------------------------- 7 ----------------------------------
8 8
9 -.. image:: https://travis-ci.org/mbedded-ninja/CppLinuxSerial.svg?branch=master  
10 - :target: https://travis-ci.org/mbedded-ninja/CppLinuxSerial 9 +.. image:: https://travis-ci.org/gbmhunter/CppLinuxSerial.svg?branch=master
  10 + :target: https://travis-ci.org/gbmhunter/CppLinuxSerial
11 11
12 .. role:: bash(code) 12 .. role:: bash(code)
13 :language: bash 13 :language: bash