C++11 library providing functionality common to all adapters.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Roker 4a3bd33be7
remove the big switch(), use pep_status_to_string() from pEpEngine.h instead.
4 years ago
build-android/jni Add stl flag on Android.mk 4 years ago
libpEpAdapter Update Windows target version 4 years ago
.hgignore Create all required folders when installing 4 years ago
Adapter.cc For debugging purposes 4 years ago
Adapter.hh LAS-2 I hope that default template argument would make modern clang++ happy. 4 years ago
Adapter.hxx API change 4 years ago
LICENSE.txt adding licensing and locked_queue 5 years ago
Makefile Create all required folders when installing 4 years ago
Makefile.conf Fix clean target, and library search paths 4 years ago
locked_queue.hh Sorry, but I do need that Deleter feature in the locked_queue to avoid memory leaks. But this way now it should not harm all non-users, I hope so. :-o 4 years ago
pc_container.hh safely delete while iterating 4 years ago
readme.md Add basic build instructions 4 years ago
slurp.cc add function slurp(), coming from JsonAdapter 5 years ago
slurp.hh add function slurp(), coming from JsonAdapter 5 years ago
status_to_string.cc remove the big switch(), use pep_status_to_string() from pEpEngine.h instead. 4 years ago
status_to_string.hh remove the big switch(), use pep_status_to_string() from pEpEngine.h instead. 4 years ago
test_adapter.cc Follow Engine's API change in test_adapter, too. 4 years ago
test_library.cc Sorry, but I do need that Deleter feature in the locked_queue to avoid memory leaks. But this way now it should not harm all non-users, I hope so. :-o 4 years ago

readme.md

How to build

To customize your build, you may change several variables that are consumed by make.

These variables, along with some explanations can be found in Makefile.conf.

You can edit that file, or create a file local.conf in the root of the repository, which will also be parsed by make.

A sample local.conf looks like this:

PREFIX=$(HOME)/code/libad/build

ENGINE_LIB=-L$(HOME)/code/engine/build/lib
ENGINE_INC=-I$(HOME)/code/engine/build/include

Now, run:

make all
make install