Fixes #1: corrected bluetooth/uuid.h includes. Also added missing .gitignore file.

pull/5/head
eidheim 2017-01-27 14:46:35 +01:00
parent 411dc8633f
commit 427bad8904
10 changed files with 10 additions and 9 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

View File

@ -29,7 +29,7 @@ project(gattlib)
find_package(PkgConfig REQUIRED)
include_directories(include bluez/attrib bluez/btio bluez/src)
include_directories(include bluez/attrib bluez/btio bluez/src bluez/lib)
# Bluez specific files
set(gattlib_SRCS bluez/attrib/att.c

View File

@ -27,7 +27,7 @@
#include <stdlib.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include <glib.h>

View File

@ -29,7 +29,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <glib.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include <bluetooth/sdp.h>
#include <bluetooth/sdp_lib.h>

View File

@ -29,7 +29,7 @@
#include <stdio.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include "log.h"
#include "att.h"

View File

@ -34,7 +34,7 @@
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include "att.h"
#include "btio.h"

View File

@ -26,7 +26,7 @@
#include <stdio.h>
#include <glib.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include <readline/readline.h>
#include <readline/history.h>

View File

@ -27,7 +27,7 @@
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include <bluetooth/sdp.h>
#include "gattlib.h"

View File

@ -29,7 +29,7 @@
#include <bluetooth/bluetooth.h>
#include <bluetooth/sdp.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#ifndef BDADDR_BREDR
/* GattLib note: BD Address have only been introduced into Bluez v4.100. */

View File

@ -27,7 +27,7 @@
#include <unistd.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/uuid.h>
#include "uuid.h"
#include "gattlib_internal.h"