This repository has been archived on 2020-05-16. You can view files and clone it, but cannot push or open issues or pull requests.
tastytea 9337964266
All checks were successful
continuous-integration/drone/push Build is passing
Install headers more elegantly.
2019-08-03 22:18:16 +02:00
2019-08-03 15:01:15 +02:00
2019-08-03 22:18:16 +02:00
2019-08-03 22:18:16 +02:00
2019-08-02 08:38:27 +02:00
2018-08-10 02:55:09 +02:00
2019-08-02 08:54:43 +02:00
2019-08-03 22:18:16 +02:00
2019-08-02 13:33:27 +02:00
2019-08-03 15:01:15 +02:00
2019-08-02 10:12:56 +02:00

xdgcfg is a very simple wrapper around libconfig written in C++. It reads and writes files in ${XDG_CONFIG_HOME}. It creates subdirectories if necessary.

Usage

xdgcfg.hpp has explanatory comments in it and there is an example. The reference is also available at doc.schlomp.space/xdgcfg/.

Use it in your CMake project like this:

find_package(xdgcfg CONFIG REQUIRED)
target_link_libraries(MyProject xdgcfg::xdgcfg)

If you don't use CMake, you can get the compile-flags with pkg-config:

pkg-config --libs --cflags xdgcfg

Install

Gentoo

Add my repository and install it from there.

eselect repository enable tastytea
echo "dev-cpp/xdgcfg" >> /etc/portage/package.accept_keywords/xdgcfg
emaint sync -r tastytea
emerge -a dev-cpp/xdgcfg

From source

Dependencies

Compile

mkdir build
cd build
cmake ..
cmake --build .
make install

CMake options

  • -DWITH_TESTS=YES to compile the tests.
  • -DWITH_EXAMPLES=YES to compile the example.
  • -DBUILD_SHARED_LIBS=NO to build a static library.
Description
Wrapper around libconfig that writes and reads files in XDG_CONFIG_HOME.
Readme 972 KiB
Languages
C++ 92.7%
CMake 3.7%
Shell 3.6%