You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
393 B

# Copyright (c) 2014, Brad Parker
# This file is licensed under the BSD 2-clause license.
QT = core
TEMPLATE = lib
TARGET = QIPRoute
INCLUDEPATH += /usr/include/libnl3
DEFINES += QIPROUTE_LIBRARY
QMAKE_CXXFLAGS += -Wall -Wextra
QMAKE_CFLAGS += -Wall -Wextra
LIBS += -lnl-route-3 -lnl-3 -lnl-genl-3
HEADERS += interface.h neighbor.h utils.h
SOURCES += interface.cpp neighbor.cpp utils.cpp