|
2 days ago | |
---|---|---|
dist | 3 weeks ago | |
src | 1 day ago | |
.clang-format | 1 week ago | |
.clang-tidy | 1 month ago | |
.gitignore | 3 months ago | |
CMakeLists.txt | 1 day ago | |
COPYING | 3 weeks ago | |
README.md | 1 day ago |
First, create the required build files (usually the Makefile)
cmake -B build/ -DCMAKE_BUILD_TYPE=Release .
Option | Description | Type | Default | Supported since |
---|---|---|---|---|
BUILD_LIBCONFIG | Build and link against libconfig | boolean | true | 2021.01.04 |
CODE_ANALYZER | Use static analysis tools | boolean | false | 2020.10.30 |
CODE_COVERAGE | Generate code coverage output | boolean | false | 2020.10.30 |
Following that, just use your build system and compile it
Example for make:
make -C build
You now should have the binary built at build/uircd
(or your build output path)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.