~donmcc/ood

An RSS reader
Check address family in init functions.
Update example in comment to match current usage.
Add `sa_update()` function.

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~donmcc/ood
read/write
git@git.sr.ht:~donmcc/ood

You can also use your local clone with git send-email.

#Ood, an RSS feed reader

builds.sr.ht status

#License

Ood is available under a BSD-style license. See the LICENSE file for details.

#Building From Source

Ood is tested on macOS, Linux, FreeBSD and OpenBSD. Building it requires a C toolchain and CMake 3.13 or later.

git clone https://git.sr.ht/~donmcc/ood
cd ood
cmake -S . -B tmp
cmake --build tmp --target all test

#Build Options

To build with the Address Sanitizer enabled, set the ADDRESS_SANITIZER option to ON.

cmake -S . -B tmp -DADDRESS_SANITIZER=ON

Mac users note that the clang that ships with Xcode accepts the -fsanitize=address flag, but doesn't actually include the Address Sanitizer.

Set the COVERAGE option to ON to generate coverage files.

cmake -S . -B tmp -DCOVERAGE=ON

Set the WALL option to ON turns on additional warnings using the -Wall compiler option and treats warnings as errors. WALL is off by default but should be turned on for development and integration builds.

cmake -S . -B tmp -DCOVERAGE=ON -DWALL=ON