Added -Wall option for cmake build system, fixed some warnings, corrected *.pro file for qmake build system

This commit is contained in:
Vadim Kuznetzov 2014-09-12 10:24:09 +04:00 committed by Guilherme Brondani Torri
parent 1d5c271001
commit fa2ad12f40
5 changed files with 16 additions and 4 deletions

View File

@ -15,6 +15,8 @@ SET(CMAKE_BUILD_TYPE Debug)
ADD_DEFINITIONS( -DHAVE_CONFIG_H )
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall ")
# define variables
SET(BINARYDIR "${CMAKE_INSTALL_PREFIX}/bin/")
SET(BITMAPDIR "${CMAKE_INSTALL_PREFIX}/share/qucs/bitmaps/")

View File

@ -435,7 +435,7 @@ void MFBfilter::calcBandPass()
if (order%2 != 0) { // Need to implement first-order section
float R1,R2,R3,R4,C1;
float R1,R2,R3,C1;
int k = order/2 + 1;
float re = Poles.at(k-1).real();

View File

@ -11,6 +11,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qucsactivefilter
TEMPLATE = app
DEFINES += HAVE_CONFIG_H
SOURCES += main.cpp\
filter.cpp \
@ -19,7 +20,8 @@ SOURCES += main.cpp\
qf_poly.cpp \
schcauer.cpp \
transferfuncdialog.cpp \
qucsactivefilter.cpp
qucsactivefilter.cpp \
helpdialog.cpp
HEADERS += \
filter.h \
@ -30,7 +32,8 @@ HEADERS += \
schcauer.h \
transferfuncdialog.h \
bessel.h \
qucsactivefilter.h
qucsactivefilter.h \
helpdialog.h
RESOURCES += \
qucsactivefilter.qrc

View File

@ -148,6 +148,8 @@ void SallenKey::calcBandPass()
current_section.R2 = 1000*R2;
current_section.R3 = 1000*R3;
current_section.R4 = 1000*R4;
current_section.R5 = 0;
current_section.R6 = 0;
current_section.C1 = C1;
current_section.C2 = C1;
Sections.append(current_section);
@ -184,6 +186,8 @@ void SallenKey::calcBandPass()
current_section.R2 = 1000*R2;
current_section.R3 = 1000*R3;
current_section.R4 = 1000*R4;
current_section.R5 = 0;
current_section.R6 = 0;
current_section.C1 = C1;
current_section.C2 = C1;
Sections.append(current_section);
@ -203,6 +207,8 @@ void SallenKey::calcBandPass()
current_section.R2 = 1000*R2;
current_section.R3 = 1000*R3;
current_section.R4 = 1000*R4;
current_section.R5 = 0;
current_section.R6 = 0;
current_section.C1 = C1;
current_section.C2 = C1;
Sections.append(current_section);
@ -234,6 +240,8 @@ void SallenKey::calcBandPass()
current_section.R2 = 1000*R2;
current_section.R3 = 1000*R3;
current_section.R4 = 1000*R4;
current_section.R5 = 0;
current_section.R6 = 0;
current_section.C1 = C1;
current_section.C2 = C1;
Sections.append(current_section);

View File

@ -258,7 +258,6 @@ void SchCauer::calcBandStop()
R4 = Kv1*R5/mu;
R6 = mu*R2/(mu-1.0);
current_section;
current_section.N = cnt;
current_section.R1 = 1000*R1;
current_section.R2 = 1000*R2;