From a1e345d62f143c3ef22e73eb51ac55fef27cf2da Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 12 May 2025 17:11:55 +0200 Subject: lib: add interface header --- lib/CMakeLists.txt | 3 ++- lib/src/turns.h | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 lib/src/turns.h (limited to 'lib') diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 8e507ec..783700e 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -4,6 +4,7 @@ set(HEADERS "src/turns-disposition.h" "src/turns-init.h" "src/turns-participant.h" + "src/turns.h" ) set(SOURCES @@ -57,7 +58,7 @@ target_add_glib_enums("lib" enable_coverage("lib") install(TARGETS "lib" - FILE_SET HEADERS + FILE_SET HEADERS DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/turns" ) # Tests diff --git a/lib/src/turns.h b/lib/src/turns.h new file mode 100644 index 0000000..6f73354 --- /dev/null +++ b/lib/src/turns.h @@ -0,0 +1,9 @@ +#ifndef TURNS_H +#define TURNS_H + +#include "turns-disposition.h" // IWYU pragma: export +#include "turns-enums.h" // IWYU pragma: export +#include "turns-init.h" // IWYU pragma: export +#include "turns-participant.h" // IWYU pragma: export + +#endif -- cgit v1.2.3