8
0
Fork
You've already forked libpEpAdapter
0
C++11 library providing functionality common to all adapters.
  • C 97.4%
  • C++ 2.5%
Find a file
2025年07月02日 18:10:12 +02:00
.gitlab-ci-files CID: don't use insecure docker registries anymore 2021年02月23日 10:16:04 +01:00
build-android Android build: Update for 2.1.19+ 2021年03月30日 14:14:14 +02:00
build-windows Add missing header files to Windows project 2021年07月16日 07:39:17 +02:00
scripts Build: change local.conf to build.conf 2023年08月28日 19:01:59 +02:00
src honor DESTDIR 2025年07月02日 18:10:12 +02:00
test C++ standard doesnt allow ';' after namespace closing '}' 2023年03月09日 16:12:13 +01:00
.clang-format fix .clang-format invalid value 2022年01月04日 14:15:43 +01:00
.clang-tidy .clang-tidy: allow implicit bool conversion 2022年03月03日 01:25:20 +01:00
.gitignore Build: change local.conf to build.conf 2023年08月28日 19:01:59 +02:00
.gitlab-ci.yml
build.conf.example Merge from Release_3.2 branch (sorry for the mess) 2023年08月28日 19:21:09 +02:00
DEPENDENCIES new version 2024年05月30日 19:56:45 +02:00
LICENSE.txt
Makefile new version 2024年05月30日 19:56:45 +02:00
Makefile.conf new version 2024年05月30日 19:56:45 +02:00
NEWS honor DESTDIR 2025年07月02日 18:10:12 +02:00
README.md Doc: Update dependency related info 2023年08月28日 19:15:42 +02:00

libpEpAdapter

Build Configuration

The build configuration file is called build.conf or can be specified (relative to repo root) using the env var BUILD_CONF.

Use the file build.conf.example as a template.

cp build.conf.example build.conf

Then, tweak it to your needs.

Build Dependencies

The aim of libpEpAdapter is to stay 3rd party dependency free. The 1st party direct dependencies are specified in the DEPENDENCIES file.

Please note: The tests require the testframework PityTest11 to be installed in the PREFIX specified.

Make Targets

The default make target is src.

Build

make src - Builds the complete library

Test

make test - Builds all tests

Install

make install - Installs the library into your $PREFIX
make uninstall - Uninstalls the library from your $PREFIX

Clean

make clean