aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2023-02-03 20:49:14 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2023-02-03 20:49:14 +0100
commit71a32ce77a7db1b3bc1230ed908fd9c68ee9dfe8 (patch)
tree038b98be24818f23c9d886ae7e5480fa8364ce75 /include
parent039a8ce9c56a327d3740134b455b8516bbabb253 (diff)
downloadlibgnunetchat-71a32ce77a7db1b3bc1230ed908fd9c68ee9dfe8.tar.gz
libgnunetchat-71a32ce77a7db1b3bc1230ed908fd9c68ee9dfe8.zip
Use meson as build system
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am7
l---------include/include1
-rw-r--r--include/meson.build24
3 files changed, 24 insertions, 8 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
deleted file mode 100644
index c1fed22..0000000
--- a/include/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
1# This Makefile.am is in the public domain
2
3gnunetincludedir = $(includedir)/gnunet
4
5gnunetinclude_HEADERS = \
6 gnunet/gnunet_chat_lib.h
7
diff --git a/include/include b/include/include
deleted file mode 120000
index f5030fe..0000000
--- a/include/include
+++ /dev/null
@@ -1 +0,0 @@
1../include \ No newline at end of file
diff --git a/include/meson.build b/include/meson.build
new file mode 100644
index 0000000..193f7fb
--- /dev/null
+++ b/include/meson.build
@@ -0,0 +1,24 @@
1#
2# This file is part of GNUnet.
3# Copyright (C) 2023 GNUnet e.V.
4#
5# GNUnet is free software: you can redistribute it and/or modify it
6# under the terms of the GNU Affero General Public License as published
7# by the Free Software Foundation, either version 3 of the License,
8# or (at your option) any later version.
9#
10# GNUnet is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#
18# SPDX-License-Identifier: AGPL3.0-or-later
19#
20
21install_headers(
22 'gnunet/gnunet_chat_lib.h',
23 subdir: 'gnunet',
24)