-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAVC.pro
53 lines (40 loc) · 1.1 KB
/
SAVC.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#-------------------------------------------------
#
# Project created by QtCreator 2014-06-16T16:34:04
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SAVC
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
GUI/SAVCWidget.cpp \
SAVC.cpp \
Multicast/Receiver.cpp \
Multicast/Sender.cpp \
CPAR.cpp \
CILO.cpp \
PIU/BreakerIED.cpp \
PIU/busied.cpp \
PIU/switchied.cpp \
PIU/TrafoIED.cpp
HEADERS += mainwindow.h \
GUI/SAVCWidget.h \
SAVC.h \
Multicast/Receiver.h \
Multicast/Sender.h \
CPAR.h \
CILO.h \
PIU/BreakerIED.h \
PIU/busied.h \
PIU/switchied.h \
PIU/TrafoIED.h \
PIU/BreakerStatus.h \
PIU/switchstatus.h
FORMS += mainwindow.ui
LIBS += -L/usr/lib/IEC61850/ -lIEC61850 \
-L/usr/lib/libasn1 -lLIBASN1 \
-L/usr/lib/IEC61970/ -lIEC61970 \
INCLUDEPATH += /usr/include/IEC61850/ /usr/include/libasn1 /usr/include/IEC61970
DEPENDPATH += /usr/include/IEC61850/ /usr/include/libasn1 /usr/include/IEC61970