Skip to content

Commit 598a032

Browse files
update lib licences
1 parent 758b594 commit 598a032

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

src/license.cpp

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,4 +585,29 @@ void print_licenses(std::ostream &o) {
585585
o << " LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM," << std::endl;
586586
o << " OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE" << std::endl;
587587
o << " SOFTWARE." << std::endl;
588+
o << std::endl;
589+
o << std::endl;
590+
o << "cxxsemaphore Library (https://github.com/NikolasK-source/cxxsemaphore)" << std::endl;
591+
o << std::endl;
592+
o << " MIT License" << std::endl;
593+
o << std::endl;
594+
o << " Copyright (c) 2023 Nikolas Koesling" << std::endl;
595+
o << std::endl;
596+
o << " Permission is hereby granted, free of charge, to any person obtaining a copy" << std::endl;
597+
o << " of this software and associated documentation files (the \"Software\"), to deal" << std::endl;
598+
o << " in the Software without restriction, including without limitation the rights" << std::endl;
599+
o << " to use, copy, modify, merge, publish, distribute, sublicense, and/or sell" << std::endl;
600+
o << " copies of the Software, and to permit persons to whom the Software is" << std::endl;
601+
o << " furnished to do so, subject to the following conditions:" << std::endl;
602+
o << std::endl;
603+
o << " The above copyright notice and this permission notice shall be included in all" << std::endl;
604+
o << " copies or substantial portions of the Software." << std::endl;
605+
o << std::endl;
606+
o << " THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR" << std::endl;
607+
o << " IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY," << std::endl;
608+
o << " FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE" << std::endl;
609+
o << " AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER" << std::endl;
610+
o << " LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM," << std::endl;
611+
o << " OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE" << std::endl;
612+
o << " SOFTWARE." << std::endl;
588613
}

src/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ int main(int argc, char **argv) {
204204
std::cout << " - cxxopts by jarro2783 (https://github.com/jarro2783/cxxopts)" << std::endl;
205205
std::cout << " - libmodbus by Stéphane Raimbault (https://github.com/stephane/libmodbus)" << std::endl;
206206
std::cout << " - cxxshm (https://github.com/NikolasK-source/cxxshm)" << std::endl;
207+
std::cout << " - cxxsemaphore (https://github.com/NikolasK-source/cxxsemaphore)" << std::endl;
207208
return EX_OK;
208209
}
209210

0 commit comments

Comments
 (0)