diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-18 12:11:07 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-18 12:11:07 +0200 |
commit | eee2cffd96fa2d7312708768fac7e67f129c5970 (patch) | |
tree | bde841d97fd1500869f93c0117b0c64d2e0250a0 | |
parent | 548c9549cd3e408df63426090088b08d72c2658e (diff) |
add warranty terms into readme
Discussed-with: @DaMichel
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | WARRANTY.txt | 7 | ||||
-rw-r--r-- | cmake/opentrack-install.cmake | 1 |
3 files changed, 12 insertions, 0 deletions
@@ -78,6 +78,10 @@ Don't be afraid to submit an issue/feature request if need arises. Almost all code is licensed under the [ISC license](https://en.wikipedia.org/wiki/ISC_license). There are very few proprietary dependencies. There is no copyleft code. See individual files for licensing and authorship information. +# Warranty terms + +See [WARRANTY.TXT](WARRANTY.txt) for applying warranty terms (that is, disclaiming possible pre-existing warranty) that are in force unless the software author specifies their own warranty terms. + # Building opentrack from source On Windows, use either mingw-w64 or MS Visual Studio 2015 Update 3/newer. On other platforms use GNU or LLVM. Refer to [Visual C++ 2015 build instructions](https://github.com/opentrack/opentrack/wiki/Building-under-MS-Visual-C------2015). diff --git a/WARRANTY.txt b/WARRANTY.txt new file mode 100644 index 00000000..9ab49569 --- /dev/null +++ b/WARRANTY.txt @@ -0,0 +1,7 @@ +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. diff --git a/cmake/opentrack-install.cmake b/cmake/opentrack-install.cmake index 5def8355..580ec135 100644 --- a/cmake/opentrack-install.cmake +++ b/cmake/opentrack-install.cmake @@ -23,6 +23,7 @@ install(DIRECTORY "${CMAKE_SOURCE_DIR}/cmake" DESTINATION "${opentrack-doc-src-p install(DIRECTORY "${CMAKE_SOURCE_DIR}/bin" DESTINATION "${opentrack-doc-src-pfx}") install(FILES "${CMAKE_SOURCE_DIR}/README.md" DESTINATION "${opentrack-doc-src-pfx}") install(FILES "${CMAKE_SOURCE_DIR}/CONTRIBUTING.md" DESTINATION "${opentrack-doc-src-pfx}") +install(FILES "${CMAKE_SOURCE_DIR}/WARRANTY.txt" DESTINATION "${opentrack-doc-src-pfx}") function(opentrack_install_sources n) opentrack_sources(${n} sources) |