Skip to content
Snippets Groups Projects
Commit feea3591 authored by Recolic's avatar Recolic :house_with_garden:
Browse files

.

parent 7774060f
No related branches found
No related tags found
1 merge request!2Add standalone implementation
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
CXX ?= g++
CXXFLAGS := -I ./lib -I . -std=c++17 -DKEYRING_IMPL=$(KEYRING_IMPL)
CXXFLAGS := -I ./lib -I . -std=c++17 -DKEYRING_IMPL_$(KEYRING_IMPL)
ifeq ($(KEYRING_IMPL),lib)
CXXFLAGS += $(shell pkg-config --cflags --libs gnome-keyring-1)
......
#include <rlib/log.hpp>
#include <rlib/opt.hpp>
// #include "impl-libgnome-keyring.hpp"
#ifdef KEYRING_IMPL_lib
#include "impl-libgnome-keyring.hpp"
#endif
#ifdef KEYRING_IMPL_standalone
#include "impl-standalone.hpp"
#endif
rlib::logger rlog(std::cerr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment