Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New features added to Qucs-filter tool #415

Merged
merged 6 commits into from
Jul 10, 2017
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions qucs/qucs-filter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ ENDIF()

FIND_PACKAGE( Qt4 REQUIRED )
SET( QT_USE_QTGUI TRUE )
SET( QT_USE_QTSVG TRUE )

INCLUDE( ${QT_USE_FILE} )

Expand All @@ -55,6 +56,8 @@ SET(QUCS-FILTER_SRCS
stepz_filter.cpp
tl_filter.cpp
quarterwave_filter.cpp
qw_coupled_ring_filter.cpp
ccoupled_shunt_resonators.cpp
)

SET(QUCS-FILTER_HDRS
Expand Down
4 changes: 4 additions & 0 deletions qucs/qucs-filter/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ qucsfilter_SOURCES = \
main.cpp \
qf_poly.cpp \
quarterwave_filter.cpp \
qw_coupled_ring_filter.cpp \
ccoupled_shunt_resonators.cpp \
qrc_qucsfilter.cpp

qrc_qucsfilter.cpp: qucsfilter.qrc
Expand All @@ -65,6 +67,8 @@ noinst_HEADERS = \
qf_filter.h \
qf_cauer.h \
quarterwave_filter.h \
qw_coupled_ring_filter.h \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here should be ccoupled_shunt_resonators.h too

ccoupled_shunt_resonators.h \
qf_matrix.h \
line_filter.h \
filter.h \
Expand Down
Loading