move headers to the correct location

This commit is contained in:
kotontrion
2024-07-19 10:13:44 +02:00
parent 5cd9f20a93
commit 86bff65898
11 changed files with 12 additions and 21 deletions
+4
View File
@@ -0,0 +1,4 @@
#include "astal/wireplumber/audio.h"
#include "astal/wireplumber/endpoint.h"
#include "astal/wireplumber/wp.h"
+4 -4
View File
@@ -1,8 +1,8 @@
astal_wireplumber_inc = include_directories('.', 'wireplumber')
astal_wireplumber_inc = include_directories('.', 'astal/wireplumber')
astal_wireplumber_headers = files(
'wireplumber.h',
'astal-wp.h',
)
install_headers(astal_wireplumber_headers, subdir : 'astal')
install_headers(astal_wireplumber_headers)
subdir('wireplumber')
subdir('astal/wireplumber')
-4
View File
@@ -1,4 +0,0 @@
#include "wireplumber/audio.h"
#include "wireplumber/endpoint.h"
#include "wireplumber/wp.h"
+1 -1
View File
@@ -3,7 +3,7 @@
#include <wp/wp.h>
#include "endpoint.h"
#include "wireplumber.h"
#include "wp.h"
struct _AstalWpAudio {
GObject parent_instance;
-6
View File
@@ -1,12 +1,6 @@
#include "endpoint.h"
#include <limits.h>
#include <wp/wp.h>
#include "endpoint-private.h"
#include "glib-object.h"
#include "glib.h"
#include "glibconfig.h"
#include "wp.h"
struct _AstalWpEndpoint {
+1 -1
View File
@@ -46,7 +46,7 @@ if get_option('introspection')
symbol_prefix : 'astal_wp',
identifier_prefix : 'AstalWp',
includes : ['GObject-2.0', 'Gio-2.0'],
header : 'astal/wireplumber.h',
header : 'astal-wp.h',
export_packages : pkg_config_name,
install : true
)
+2 -5
View File
@@ -2,9 +2,6 @@
#include "audio.h"
#include "endpoint-private.h"
#include "endpoint.h"
#include "glib-object.h"
#include "glib.h"
#include "wp.h"
struct _AstalWpWp {
@@ -315,7 +312,7 @@ static void astal_wp_wp_class_init(AstalWpWpClass *class) {
astal_wp_wp_properties[ASTAL_WP_WP_PROP_ENDPOINTS] =
g_param_spec_pointer("endpoints", "endpoints", "endpoints", G_PARAM_READABLE);
/**
* AstalWpAudio:default-speaker:
* AstalWpWp:default-speaker:
*
* The AstalWndpoint object representing the default speaker
*/
@@ -323,7 +320,7 @@ static void astal_wp_wp_class_init(AstalWpWpClass *class) {
g_param_spec_object("default-speaker", "default-speaker", "default-speaker",
ASTAL_WP_TYPE_ENDPOINT, G_PARAM_READABLE);
/**
* AstalWpAudio:default-microphone:
* AstalWpWp:default-microphone:
*
* The AstalWndpoint object representing the default speaker
*/