Don't link against libudev any more.

This commit is contained in:
David Given
2021-07-08 10:49:57 +02:00
parent 4cbb75df60
commit b550bbbd08
2 changed files with 1 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ jobs:
with:
fetch-depth: 1
- name: apt
run: sudo apt update && sudo apt install libusb-1.0-0-dev libsqlite3-dev ninja-build protobuf-compiler libudev-dev
run: sudo apt update && sudo apt install libusb-1.0-0-dev libsqlite3-dev ninja-build protobuf-compiler
- name: make
run: make

View File

@@ -9,10 +9,6 @@ export LDOPTFLAGS = -Os
export CDBGFLAGS = -O0 -g
export LDDBGFLAGS = -O0 -g
ifeq ($(shell uname),Linux)
LIBS += -ludev
endif
ifeq ($(OS), Windows_NT)
export PROTOC = /mingw32/bin/protoc
export CXX = /mingw32/bin/g++