forked from thomaslepoix/Qucs-RFlayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQucs-RFlayout.pro
122 lines (104 loc) · 3.51 KB
/
Qucs-RFlayout.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#/usr/lib/qt5/bin/qmake
#-------------------------------------------------
#
# Project created by QtCreator 2018-11-16T09:44:12
#
#-------------------------------------------------
QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 5): QT += widgets
CONFIG += c++14
isEmpty(PREFIX): PREFIX = /usr/local
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
##########################################################################TARGET
TARGET = $$PWD/out/qucsrflayout
TEMPLATE = app
SOURCES += \
$$PWD/src/logger.cpp \
$$PWD/src/microstrip/element.cpp \
$$PWD/src/microstrip/pac.cpp \
$$PWD/src/microstrip/sp.cpp \
$$PWD/src/microstrip/subst.cpp \
$$PWD/src/microstrip/mcorn.cpp \
$$PWD/src/microstrip/mcoupled.cpp \
$$PWD/src/microstrip/mcross.cpp \
$$PWD/src/microstrip/mgap.cpp \
$$PWD/src/microstrip/mlin.cpp \
$$PWD/src/microstrip/mmbend.cpp \
$$PWD/src/microstrip/mopen.cpp \
$$PWD/src/microstrip/mrstub.cpp \
$$PWD/src/microstrip/mstep.cpp \
$$PWD/src/microstrip/mtee.cpp \
$$PWD/src/microstrip/mvia.cpp \
$$PWD/src/data.cpp \
$$PWD/src/schparser.cpp \
$$PWD/src/xycalculator.cpp \
$$PWD/src/oemsline.cpp \
$$PWD/src/oemsmesh.cpp \
$$PWD/src/layoutstrings.cpp \
$$PWD/src/layoutwriter.cpp \
$$PWD/src/converter.cpp \
$$PWD/src/preview.cpp \
$$PWD/src/mainwindow.cpp \
$$PWD/src/main.cpp
HEADERS += \
$$PWD/src/logger.hpp \
$$PWD/src/microstrip/element.hpp \
$$PWD/src/microstrip/pac.hpp \
$$PWD/src/microstrip/sp.hpp \
$$PWD/src/microstrip/subst.hpp \
$$PWD/src/microstrip/mcorn.hpp \
$$PWD/src/microstrip/mcoupled.hpp \
$$PWD/src/microstrip/mcross.hpp \
$$PWD/src/microstrip/mgap.hpp \
$$PWD/src/microstrip/mlin.hpp \
$$PWD/src/microstrip/mmbend.hpp \
$$PWD/src/microstrip/mopen.hpp \
$$PWD/src/microstrip/mrstub.hpp \
$$PWD/src/microstrip/mstep.hpp \
$$PWD/src/microstrip/mtee.hpp \
$$PWD/src/microstrip/mvia.hpp \
$$PWD/src/data.hpp \
$$PWD/src/schparser.hpp \
$$PWD/src/xycalculator.hpp \
$$PWD/src/oemsline.hpp \
$$PWD/src/oemsmesh.hpp \
$$PWD/src/layoutstrings.hpp \
$$PWD/src/layoutwriter.hpp \
$$PWD/src/converter.hpp \
$$PWD/src/preview.hpp \
$$PWD/src/mainwindow.hpp
FORMS += \
$$PWD/src/mainwindow.ui
INCLUDEPATH += \
$$PWD/src
DEFINES += \
QRFL_VERSION=\\\"2.0.0\\\"
target.path = $$PREFIX/bin
INSTALLS += target
#############################################################################DOC
QUCS_URL = "https://sf.net/p/qucs"
QUCS_BUGREPORT = "[email protected]"
QMAKE_SUBSTITUTES += $$PWD/doc/qucsrflayout.1.qmake.in
unix {
man.extra = gzip -9 -c ./doc/qucsrflayout.1.qmake > ./doc/qucsrflayout.1.gz
man.files = ./doc/qucsrflayout.1.gz
man.path = $$PREFIX/share/man/man1
man.clean = rm -f doc/qucsrflayout.1.gz
INSTALLS += man
}
unix {
changelog.extra = gzip -9 -c $$PWD/CHANGELOG > ./doc/changelog.gz
changelog.files = ./doc/changelog.gz
changelog.path = $$PREFIX/share/doc/qucsrflayout
changelog.clean = rm -f doc/changelog.gz
INSTALLS += changelog
}
#CONFIG += object_parallel_to_source