diff --git a/.gitignore b/.gitignore index f74f86f..38c1e1b 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,15 @@ qwt-6.2/lib/pkgconfig/Qt5Qwt6.pc qwt-6.2/lib/qwtmathml.pc qwt-6.2/lib/pkgconfig/Qt5Qwt6.pc qwt-6.2/lib/qwtmathml.pc + +*.swp + +*.dmg + +PGTinstaller/packages/nheri\.simcenter\.pgt/data/PileGroupTool/ + +PileGroupTool\.pro\.user\.4\.8-pre1 + +PileGroupTool\.pro\.user\.4\.9-pre1 + +PileGroupTool.pro.user.4.10-pre1 diff --git a/FEA/pilefeamodeler.cpp b/FEA/pilefeamodeler.cpp index b865b8b..6a42fbd 100644 --- a/FEA/pilefeamodeler.cpp +++ b/FEA/pilefeamodeler.cpp @@ -90,7 +90,7 @@ PileFEAmodeler::PileFEAmodeler() PileFEAmodeler::~PileFEAmodeler() { delete theDomain; - theDomain = NULL; + theDomain = nullptr; } @@ -1214,9 +1214,9 @@ void PileFEAmodeler::buildLoad() out << endl; } - LinearSeries *theTimeSeries = NULL; - LoadPattern *theLoadPattern = NULL; - NodalLoad *theLoad = NULL; + LinearSeries *theTimeSeries = nullptr; + LoadPattern *theLoadPattern = nullptr; + NodalLoad *theLoad = nullptr; theTimeSeries = new LinearSeries(1, 1.0); theLoadPattern = new LoadPattern(1); @@ -1346,7 +1346,7 @@ void PileFEAmodeler::buildAnalysis() BandGenLinSolver *theSolver = new BandGenLinLapackSolver(); LinearSOE *theSOE = new BandGenLinSOE(*theSolver); - if (theAnalysis != NULL) delete theAnalysis; + if (theAnalysis != nullptr) delete theAnalysis; theAnalysis = new StaticAnalysis(*theDomain, *theHandler, @@ -1389,25 +1389,25 @@ void PileFEAmodeler::buildAnalysis() void PileFEAmodeler::clearPlotBuffers() { - foreach (QVector *ptr, locList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, locList) { if (ptr != nullptr) delete ptr; } locList.clear(); - foreach (QVector *ptr, lateralDispList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, lateralDispList) { if (ptr != nullptr) delete ptr; } lateralDispList.clear(); - foreach (QVector *ptr, axialDispList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, axialDispList) { if (ptr != nullptr) delete ptr; } axialDispList.clear(); - foreach (QVector *ptr, MomentList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, MomentList) { if (ptr != nullptr) delete ptr; } MomentList.clear(); - foreach (QVector *ptr, ShearList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, ShearList) { if (ptr != nullptr) delete ptr; } ShearList.clear(); - foreach (QVector *ptr, AxialList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, AxialList) { if (ptr != nullptr) delete ptr; } AxialList.clear(); - foreach (QVector *ptr, StressList) { if (ptr != NULL) delete ptr; } + foreach (QVector *ptr, StressList) { if (ptr != nullptr) delete ptr; } StressList.clear(); } @@ -1780,5 +1780,5 @@ void PileFEAmodeler::writeFEMinput(QString filename) FEMfile->flush(); FEMfile->close(); delete FEMfile; - FEMfile = NULL; + FEMfile = nullptr; } diff --git a/FEA/pilefeamodeler.h b/FEA/pilefeamodeler.h index f37e6f9..a022ce8 100644 --- a/FEA/pilefeamodeler.h +++ b/FEA/pilefeamodeler.h @@ -172,7 +172,7 @@ class PileFEAmodeler QList capNodeList; Domain *theDomain; - StaticAnalysis *theAnalysis = NULL; + StaticAnalysis *theAnalysis = nullptr; int numLoadedNode; QVector depthOfLayer = QVector(4, 0.0); @@ -196,7 +196,7 @@ class PileFEAmodeler // // state switches bool dumpFEMinput; - QFile *FEMfile = NULL; + QFile *FEMfile = nullptr; }; #endif // PILEFEAMODELER_H diff --git a/Makefile b/Makefile index 23446d6..f276a1e 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ ############################################################################# # Makefile for building: PileGroupTool.app/Contents/MacOS/PileGroupTool -# Generated by qmake (3.1) (Qt 5.10.0) +# Generated by qmake (3.1) (Qt 5.11.2) # Project: PileGroupTool.pro # Template: app -# Command: /Users/pmackenz/Qt/5.10.0/clang_64/bin/qmake -o Makefile PileGroupTool.pro +# Command: /Users/pmackenz/Qt/5.11.2/clang_64/bin/qmake -o Makefile PileGroupTool.pro ############################################################################# MAKEFILE = Makefile @@ -12,11 +12,11 @@ MAKEFILE = Makefile CC = /Library/Developer/CommandLineTools/usr/bin/clang CXX = /Library/Developer/CommandLineTools/usr/bin/clang++ -DEFINES = -DAPP_VERSION=\"1.99.2\" -D_bool_h -D_MacOSX -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -CFLAGS = -pipe -O2 $(EXPORT_ARCH_ARGS) -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -mmacosx-version-min=10.10 -Wall -W -fPIC $(DEFINES) -CXXFLAGS = -pipe -stdlib=libc++ -O2 -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -mmacosx-version-min=10.10 -Wall -Wno-unused-variable -std=c++11 -fPIC $(DEFINES) -INCPATH = -I. -I.include -Iops -Iqwt-6.2/src -Iincludes -ImainWindow -Idialogs -Iplots -IFEA -Iqwt-6.2/src -I../../../Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I../../../Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I. -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/AGL.framework/Headers -I. -I../../../Qt/5.10.0/clang_64/mkspecs/macx-clang -F/Users/pmackenz/Qt/5.10.0/clang_64/lib -QMAKE = /Users/pmackenz/Qt/5.10.0/clang_64/bin/qmake +DEFINES = -DAPP_VERSION=\"2.0.4\" -DQWT_DLL -D_bool_h -D_MacOSX -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_OPENGL_LIB -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CONCURRENT_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB +CFLAGS = -pipe -O2 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.11 -Wall -W -fPIC $(DEFINES) +CXXFLAGS = -pipe -stdlib=libc++ -O2 -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.11 -Wall -Wno-unused-variable -std=c++11 -fPIC $(DEFINES) +INCPATH = -I. -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I.include -Iops -Iincludes -ImainWindow -Idialogs -Iplots -IFEA -I../../../Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I. -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AGL.framework/Headers -I. -I../../../Qt/5.11.2/clang_64/mkspecs/macx-clang -F/Users/pmackenz/Qt/5.11.2/clang_64/lib +QMAKE = /Users/pmackenz/Qt/5.11.2/clang_64/bin/qmake DEL_FILE = rm -f CHK_DIR_EXISTS= test -d MKDIR = mkdir -p @@ -26,19 +26,19 @@ COPY_DIR = cp -f -R INSTALL_FILE = install -m 644 -p INSTALL_PROGRAM = install -m 755 -p INSTALL_DIR = cp -f -R -QINSTALL = /Users/pmackenz/Qt/5.10.0/clang_64/bin/qmake -install qinstall -QINSTALL_PROGRAM = /Users/pmackenz/Qt/5.10.0/clang_64/bin/qmake -install qinstall -exe +QINSTALL = /Users/pmackenz/Qt/5.11.2/clang_64/bin/qmake -install qinstall +QINSTALL_PROGRAM = /Users/pmackenz/Qt/5.11.2/clang_64/bin/qmake -install qinstall -exe DEL_FILE = rm -f SYMLINK = ln -f -s DEL_DIR = rmdir MOVE = mv -f TAR = tar -cf COMPRESS = gzip -9f -DISTNAME = PileGroupTool1.99.2 -DISTDIR = /Users/pmackenz/Development/SimCenter/PileGroupTool/.tmp/PileGroupTool1.99.2 +DISTNAME = PileGroupTool2.0.4 +DISTDIR = /Users/pmackenz/Development/SimCenter/PileGroupTool/.tmp/PileGroupTool2.0.4 LINK = /Library/Developer/CommandLineTools/usr/bin/clang++ -LFLAGS = -stdlib=libc++ -headerpad_max_install_names $(EXPORT_ARCH_ARGS) -Wl,-syslibroot,/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -mmacosx-version-min=10.10 -Wl,-rpath,@executable_path/Frameworks -Wl,-rpath,/Users/pmackenz/Qt/5.10.0/clang_64/lib -LIBS = $(SUBLIBS) -F/Users/pmackenz/Qt/5.10.0/clang_64/lib -llapack -lblas -L$(HOME)/Development/SimCenter/PileGroupTool/qwt-6.2/lib -L$(HOME)/Documents/GitHub/PileGroupTool/qwt-6.2/lib -lqwt -framework QtPrintSupport -framework QtWidgets -framework QtGui -framework QtCore -framework DiskArbitration -framework IOKit -framework QtNetwork -framework OpenGL -framework AGL +LFLAGS = -stdlib=libc++ -headerpad_max_install_names $(EXPORT_ARCH_ARGS) -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.11 -Wl,-rpath,@executable_path/Frameworks -Wl,-rpath,/Users/pmackenz/Qt/5.11.2/clang_64/lib +LIBS = $(SUBLIBS) -F/Users/pmackenz/Qt/5.11.2/clang_64/lib -F/usr/local/qwt-6.1.4-svn/lib -framework qwt -llapack -lblas -framework QtSvg -framework QtWidgets -framework QtGui -framework QtCore -framework DiskArbitration -framework IOKit -framework QtOpenGL -framework QtPrintSupport -framework QtConcurrent -framework QtNetwork -framework OpenGL -framework AGL AR = /Library/Developer/CommandLineTools/usr/bin/ar cq RANLIB = /Library/Developer/CommandLineTools/usr/bin/ranlib -s SED = sed @@ -149,7 +149,6 @@ SOURCES = ops/Domain.cpp \ FEA/soilmat.cpp \ FEA/pilefeamodeler.cpp \ dialogs/materialdbinterface.cpp \ - dialogs/surveysplashscreen.cpp \ utilWindows/copyrightdialog.cpp \ utilWindows/dialogabout.cpp \ utilWindows/dialogpreferences.cpp \ @@ -158,11 +157,10 @@ SOURCES = ops/Domain.cpp \ plots/systemplotqwt.cpp \ plots/resultplotsuper.cpp \ plots/resultplotqwt.cpp \ - ../widgets/Common/FooterWidget.cpp \ - ../widgets/Common/HeaderWidget.cpp qrc_qtpileresources.cpp \ + ../SimCenterCommon/Common/FooterWidget.cpp \ + ../SimCenterCommon/Common/HeaderWidget.cpp qrc_qtpileresources.cpp \ moc_mainwindow.cpp \ moc_materialdbinterface.cpp \ - moc_surveysplashscreen.cpp \ moc_copyrightdialog.cpp \ moc_dialogabout.cpp \ moc_dialogpreferences.cpp \ @@ -270,7 +268,6 @@ OBJECTS = Domain.o \ soilmat.o \ pilefeamodeler.o \ materialdbinterface.o \ - surveysplashscreen.o \ copyrightdialog.o \ dialogabout.o \ dialogpreferences.o \ @@ -284,7 +281,6 @@ OBJECTS = Domain.o \ qrc_qtpileresources.o \ moc_mainwindow.o \ moc_materialdbinterface.o \ - moc_surveysplashscreen.o \ moc_copyrightdialog.o \ moc_dialogabout.o \ moc_dialogpreferences.o \ @@ -293,179 +289,186 @@ OBJECTS = Domain.o \ moc_resultplotsuper.o \ moc_FooterWidget.o \ moc_HeaderWidget.o -DIST = ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/qdevice.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/device_config.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/unix.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/mac.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/macx.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/sanitize.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/gcc-base.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/gcc-base-mac.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/clang.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/clang-mac.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/qconfig.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3danimation.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dcore.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dextras.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dinput.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dlogic.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquick.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3drender.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3drender_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bluetooth.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_charts.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_charts_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_concurrent.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_core.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_core_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_datavisualization.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_dbus.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_dbus_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designer.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designer_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gamepad.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gui.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gui_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_help.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_help_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_location.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_location_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_macextras.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_macextras_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimedia.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_network.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_network_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_nfc.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_nfc_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_opengl.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_opengl_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_openglextensions.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_positioning.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_positioning_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_printsupport.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qml.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qml_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmltest.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quick.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quick_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_scxml.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_scxml_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sensors.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sensors_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialbus.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialport.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialport_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sql.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sql_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_svg.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_svg_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_testlib.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_testlib_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_texttospeech.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uiplugin.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uitools.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uitools_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webchannel.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webengine.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webengine_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecore.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_websockets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_websockets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webview.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webview_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_widgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_widgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xml.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xml_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qt_functions.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qt_config.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/macx-clang/qmake.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_post.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/exclusive_builds.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/sdk.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/toolchain.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/toolchain.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/default_pre.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/default_pre.prf \ +DIST = ../../../Qt/5.11.2/clang_64/mkspecs/features/spec_pre.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/qdevice.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/device_config.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/unix.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/mac.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/macx.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/sanitize.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/gcc-base.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/gcc-base-mac.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/clang.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/clang-mac.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/qconfig.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3danimation.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dcore.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dextras.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dinput.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dlogic.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquick.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3drender.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3drender_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bluetooth.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_charts.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_charts_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_concurrent.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_core.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_core_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_datavisualization.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_dbus.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_dbus_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designer.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designer_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gamepad.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gui.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gui_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_help.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_help_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_location.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_location_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_macextras.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_macextras_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimedia.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_network.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_network_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_nfc.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_nfc_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_opengl.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_opengl_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_openglextensions.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioning.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioning_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioningquick.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioningquick_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_printsupport.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qml.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qml_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmltest.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quick.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quick_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_scxml.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_scxml_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sensors.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sensors_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialbus.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialport.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialport_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_service_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sql.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sql_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_svg.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_svg_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_testlib.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_testlib_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_texttospeech.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uiplugin.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uitools.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uitools_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webchannel.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webengine.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webengine_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecore.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_websockets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_websockets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webview.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webview_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_widgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_widgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xml.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xml_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qt_functions.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qt_config.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/macx-clang/qmake.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/spec_post.prf \ + .qmake.stash \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/exclusive_builds.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/sdk.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/toolchain.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/toolchain.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/default_pre.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/default_pre.prf \ + /usr/local/qwt-6.1.4-svn/features/qwtconfig.pri \ + /usr/local/qwt-6.1.4-svn/features/qwtfunctions.pri \ + /usr/local/qwt-6.1.4-svn/features/qwt.prf \ OPS_includes.pro \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/resolve_config.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/default_post.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/default_post.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/objective_c.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/mac.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/warn_on.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qt.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/resources.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/moc.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/unix/opengl.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/uic.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/unix/thread.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qmake_use.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/file_copies.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/rez.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/asset_catalogs.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/testcase_targets.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/exceptions.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/yacc.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/lex.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/resolve_config.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/default_post.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/default_post.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/objective_c.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/mac.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/warn_on.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qt.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/resources.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/moc.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/unix/opengl.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/uic.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/unix/thread.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qmake_use.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/file_copies.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/rez.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/asset_catalogs.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/testcase_targets.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/exceptions.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/yacc.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/lex.prf \ PileGroupTool.pro ops/Analysis.h \ ops/AnalysisModel.h \ ops/ArrayOfTaggedObjects.h \ @@ -607,7 +610,6 @@ DIST = ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf \ FEA/soilmat.h \ FEA/pilefeamodeler.h \ dialogs/materialdbinterface.h \ - dialogs/surveysplashscreen.h \ utilWindows/copyrightdialog.h \ utilWindows/dialogabout.h \ utilWindows/dialogpreferences.h \ @@ -616,8 +618,8 @@ DIST = ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf \ plots/systemplotqwt.h \ plots/resultplotsuper.h \ plots/resultplotqwt.h \ - ../widgets/Common/FooterWidget.h \ - ../widgets/Common/HeaderWidget.h ops/Domain.cpp \ + ../SimCenterCommon/Common/FooterWidget.h \ + ../SimCenterCommon/Common/HeaderWidget.h ops/Domain.cpp \ ops/Subdomain.cpp \ ops/DomainComponent.cpp \ ops/ArrayOfTaggedObjects.cpp \ @@ -716,7 +718,6 @@ DIST = ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf \ FEA/soilmat.cpp \ FEA/pilefeamodeler.cpp \ dialogs/materialdbinterface.cpp \ - dialogs/surveysplashscreen.cpp \ utilWindows/copyrightdialog.cpp \ utilWindows/dialogabout.cpp \ utilWindows/dialogpreferences.cpp \ @@ -725,386 +726,409 @@ DIST = ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf \ plots/systemplotqwt.cpp \ plots/resultplotsuper.cpp \ plots/resultplotqwt.cpp \ - ../widgets/Common/FooterWidget.cpp \ - ../widgets/Common/HeaderWidget.cpp + ../SimCenterCommon/Common/FooterWidget.cpp \ + ../SimCenterCommon/Common/HeaderWidget.cpp QMAKE_TARGET = PileGroupTool DESTDIR = TARGET = PileGroupTool.app/Contents/MacOS/PileGroupTool ####### Custom Variables +EXPORT_QMAKE_MAC_SDK = macosx +EXPORT_QMAKE_MAC_SDK_VERSION = 10.14 EXPORT_VALID_ARCHS = x86_64 EXPORT_ACTIVE_ARCHS = $(filter $(EXPORT_VALID_ARCHS), $(ARCHS)) EXPORT_ARCH_ARGS = $(foreach arch, $(if $(EXPORT_ACTIVE_ARCHS), $(EXPORT_ACTIVE_ARCHS), $(EXPORT_VALID_ARCHS)), -arch $(arch)) +include /Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/features/mac/sdk.mk first: all ####### Build rules -$(TARGET): ui_mainwindow.h ui_materialdbinterface.h ui_surveysplashscreen.h ui_copyrightdialog.h ui_dialogabout.h ui_dialogpreferences.h ui_dialogfuturefeature.h $(OBJECTS) +$(TARGET): ui_mainwindow.h ui_materialdbinterface.h ui_copyrightdialog.h ui_dialogabout.h ui_dialogpreferences.h ui_dialogfuturefeature.h $(OBJECTS) @test -d PileGroupTool.app/Contents/MacOS/ || mkdir -p PileGroupTool.app/Contents/MacOS/ $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) -Makefile: PileGroupTool.pro ../../../Qt/5.10.0/clang_64/mkspecs/macx-clang/qmake.conf ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/qdevice.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/device_config.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/unix.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/mac.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/macx.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/sanitize.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/gcc-base.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/gcc-base-mac.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/clang.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/common/clang-mac.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/qconfig.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3danimation.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dcore.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dextras.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dinput.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dlogic.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquick.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3drender.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3drender_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bluetooth.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_charts.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_charts_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_concurrent.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_core.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_core_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_datavisualization.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_dbus.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_dbus_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designer.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designer_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gamepad.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gui.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gui_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_help.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_help_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_location.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_location_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_macextras.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_macextras_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimedia.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_network.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_network_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_nfc.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_nfc_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_opengl.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_opengl_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_openglextensions.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_positioning.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_positioning_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_printsupport.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qml.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qml_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmltest.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quick.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quick_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_scxml.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_scxml_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sensors.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sensors_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialbus.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialport.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialport_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sql.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sql_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_svg.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_svg_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_testlib.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_testlib_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_texttospeech.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uiplugin.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uitools.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uitools_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webchannel.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webengine.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webengine_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecore.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_websockets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_websockets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webview.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webview_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_widgets.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_widgets_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xml.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xml_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qt_functions.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qt_config.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/macx-clang/qmake.conf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/spec_post.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/exclusive_builds.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/sdk.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/toolchain.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/toolchain.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/default_pre.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/default_pre.prf \ +Makefile: PileGroupTool.pro ../../../Qt/5.11.2/clang_64/mkspecs/macx-clang/qmake.conf ../../../Qt/5.11.2/clang_64/mkspecs/features/spec_pre.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/qdevice.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/device_config.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/unix.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/mac.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/macx.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/sanitize.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/gcc-base.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/gcc-base-mac.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/clang.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/common/clang-mac.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/qconfig.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3danimation.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dcore.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dextras.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dinput.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dlogic.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquick.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3drender.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3drender_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bluetooth.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_charts.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_charts_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_concurrent.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_core.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_core_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_datavisualization.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_dbus.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_dbus_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designer.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designer_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gamepad.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gui.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gui_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_help.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_help_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_location.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_location_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_macextras.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_macextras_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimedia.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_network.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_network_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_nfc.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_nfc_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_opengl.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_opengl_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_openglextensions.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioning.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioning_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioningquick.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioningquick_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_printsupport.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qml.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qml_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmltest.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quick.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quick_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_scxml.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_scxml_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sensors.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sensors_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialbus.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialport.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialport_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_service_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sql.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sql_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_svg.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_svg_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_testlib.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_testlib_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_texttospeech.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uiplugin.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uitools.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uitools_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webchannel.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webengine.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webengine_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecore.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_websockets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_websockets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webview.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webview_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_widgets.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_widgets_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xml.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xml_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qt_functions.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qt_config.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/macx-clang/qmake.conf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/spec_post.prf \ + .qmake.stash \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/exclusive_builds.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/sdk.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/toolchain.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/toolchain.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/default_pre.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/default_pre.prf \ + /usr/local/qwt-6.1.4-svn/features/qwtconfig.pri \ + /usr/local/qwt-6.1.4-svn/features/qwtfunctions.pri \ + /usr/local/qwt-6.1.4-svn/features/qwt.prf \ OPS_includes.pro \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/resolve_config.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/default_post.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/default_post.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/objective_c.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/mac.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/warn_on.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qt.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/resources.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/moc.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/unix/opengl.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/uic.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/unix/thread.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/qmake_use.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/file_copies.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/rez.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/mac/asset_catalogs.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/testcase_targets.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/exceptions.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/yacc.prf \ - ../../../Qt/5.10.0/clang_64/mkspecs/features/lex.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/resolve_config.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/default_post.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/default_post.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/objective_c.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/mac.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/warn_on.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qt.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/resources.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/moc.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/unix/opengl.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/uic.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/unix/thread.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/qmake_use.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/file_copies.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/rez.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/mac/asset_catalogs.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/testcase_targets.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/exceptions.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/yacc.prf \ + ../../../Qt/5.11.2/clang_64/mkspecs/features/lex.prf \ PileGroupTool.pro \ qtpileresources.qrc \ - ../../../Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/QtPrintSupport.prl \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/QtWidgets.prl \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/QtGui.prl \ - ../../../Qt/5.10.0/clang_64/lib/QtNetwork.framework/QtNetwork.prl \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/QtCore.prl + ../../../Qt/5.11.2/clang_64/lib/QtSvg.framework/QtSvg.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtOpenGL.framework/QtOpenGL.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/QtPrintSupport.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/QtWidgets.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/QtGui.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtConcurrent.framework/QtConcurrent.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtNetwork.framework/QtNetwork.prl \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/QtCore.prl $(QMAKE) -o Makefile PileGroupTool.pro -../../../Qt/5.10.0/clang_64/mkspecs/features/spec_pre.prf: -../../../Qt/5.10.0/clang_64/mkspecs/qdevice.pri: -../../../Qt/5.10.0/clang_64/mkspecs/features/device_config.prf: -../../../Qt/5.10.0/clang_64/mkspecs/common/unix.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/mac.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/macx.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/sanitize.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/gcc-base.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/gcc-base-mac.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/clang.conf: -../../../Qt/5.10.0/clang_64/mkspecs/common/clang-mac.conf: -../../../Qt/5.10.0/clang_64/mkspecs/qconfig.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3danimation.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dcore.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dextras.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dinput.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dlogic.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquick.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3drender.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_3drender_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bluetooth.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_charts.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_charts_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_concurrent.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_core.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_core_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_datavisualization.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_dbus.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_dbus_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designer.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designer_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gamepad.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gui.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_gui_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_help.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_help_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_location.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_location_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_macextras.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_macextras_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimedia.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_network.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_network_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_nfc.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_nfc_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_opengl.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_opengl_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_openglextensions.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_positioning.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_positioning_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_printsupport.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qml.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qml_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmltest.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quick.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quick_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_scxml.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_scxml_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sensors.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sensors_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialbus.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialport.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_serialport_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sql.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_sql_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_svg.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_svg_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_testlib.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_testlib_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_texttospeech.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uiplugin.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uitools.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_uitools_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webchannel.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webengine.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webengine_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecore.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_websockets.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_websockets_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webview.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_webview_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_widgets.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_widgets_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xml.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xml_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri: -../../../Qt/5.10.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri: -../../../Qt/5.10.0/clang_64/mkspecs/features/qt_functions.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/qt_config.prf: -../../../Qt/5.10.0/clang_64/mkspecs/macx-clang/qmake.conf: -../../../Qt/5.10.0/clang_64/mkspecs/features/spec_post.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/exclusive_builds.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/sdk.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/toolchain.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/toolchain.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/default_pre.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/default_pre.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/spec_pre.prf: +../../../Qt/5.11.2/clang_64/mkspecs/qdevice.pri: +../../../Qt/5.11.2/clang_64/mkspecs/features/device_config.prf: +../../../Qt/5.11.2/clang_64/mkspecs/common/unix.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/mac.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/macx.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/sanitize.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/gcc-base.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/gcc-base-mac.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/clang.conf: +../../../Qt/5.11.2/clang_64/mkspecs/common/clang-mac.conf: +../../../Qt/5.11.2/clang_64/mkspecs/qconfig.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3danimation.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dcore.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dextras.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dinput.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dlogic.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquick.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3drender.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_3drender_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bluetooth.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_charts.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_charts_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_concurrent.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_core.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_core_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_datavisualization.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_dbus.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_dbus_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designer.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designer_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gamepad.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gui.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_gui_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_help.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_help_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_location.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_location_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_macextras.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_macextras_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimedia.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_network.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_network_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_nfc.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_nfc_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_opengl.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_opengl_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_openglextensions.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioning.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioning_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioningquick.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_positioningquick_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_printsupport.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qml.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qml_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmltest.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quick.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quick_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_scxml.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_scxml_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sensors.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sensors_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialbus.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialport.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_serialport_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_service_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sql.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_sql_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_svg.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_svg_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_testlib.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_testlib_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_texttospeech.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uiplugin.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uitools.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_uitools_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webchannel.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webengine.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webengine_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecore.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_websockets.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_websockets_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webview.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_webview_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_widgets.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_widgets_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xml.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xml_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri: +../../../Qt/5.11.2/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri: +../../../Qt/5.11.2/clang_64/mkspecs/features/qt_functions.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/qt_config.prf: +../../../Qt/5.11.2/clang_64/mkspecs/macx-clang/qmake.conf: +../../../Qt/5.11.2/clang_64/mkspecs/features/spec_post.prf: +.qmake.stash: +../../../Qt/5.11.2/clang_64/mkspecs/features/exclusive_builds.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/sdk.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/toolchain.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/toolchain.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/default_pre.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/default_pre.prf: +/usr/local/qwt-6.1.4-svn/features/qwtconfig.pri: +/usr/local/qwt-6.1.4-svn/features/qwtfunctions.pri: +/usr/local/qwt-6.1.4-svn/features/qwt.prf: OPS_includes.pro: -../../../Qt/5.10.0/clang_64/mkspecs/features/resolve_config.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/default_post.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/default_post.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/objective_c.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/mac.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/warn_on.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/qt.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/resources.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/moc.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/unix/opengl.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/uic.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/unix/thread.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/qmake_use.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/file_copies.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/rez.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/mac/asset_catalogs.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/testcase_targets.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/exceptions.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/yacc.prf: -../../../Qt/5.10.0/clang_64/mkspecs/features/lex.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/resolve_config.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/default_post.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/default_post.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/objective_c.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/mac.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/warn_on.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/qt.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/resources.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/moc.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/unix/opengl.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/uic.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/unix/thread.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/qmake_use.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/file_copies.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/rez.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/mac/asset_catalogs.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/testcase_targets.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/exceptions.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/yacc.prf: +../../../Qt/5.11.2/clang_64/mkspecs/features/lex.prf: PileGroupTool.pro: qtpileresources.qrc: -../../../Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/QtPrintSupport.prl: -../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/QtWidgets.prl: -../../../Qt/5.10.0/clang_64/lib/QtGui.framework/QtGui.prl: -../../../Qt/5.10.0/clang_64/lib/QtNetwork.framework/QtNetwork.prl: -../../../Qt/5.10.0/clang_64/lib/QtCore.framework/QtCore.prl: +../../../Qt/5.11.2/clang_64/lib/QtSvg.framework/QtSvg.prl: +../../../Qt/5.11.2/clang_64/lib/QtOpenGL.framework/QtOpenGL.prl: +../../../Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/QtPrintSupport.prl: +../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/QtWidgets.prl: +../../../Qt/5.11.2/clang_64/lib/QtGui.framework/QtGui.prl: +../../../Qt/5.11.2/clang_64/lib/QtConcurrent.framework/QtConcurrent.prl: +../../../Qt/5.11.2/clang_64/lib/QtNetwork.framework/QtNetwork.prl: +../../../Qt/5.11.2/clang_64/lib/QtCore.framework/QtCore.prl: qmake: FORCE @$(QMAKE) -o Makefile PileGroupTool.pro @@ -1121,7 +1145,7 @@ PileGroupTool.app/Contents/Resources/empty.lproj: PileGroupTool.app/Contents/Info.plist: @test -d PileGroupTool.app/Contents || mkdir -p PileGroupTool.app/Contents @$(DEL_FILE) PileGroupTool.app/Contents/Info.plist - @sed -e "s,@SHORT_VERSION@,1.99,g" -e "s,@FULL_VERSION@,1.99.2,g" -e "s,@TYPEINFO@,????,g" -e "s,@BUNDLEIDENTIFIER@,com.yourcompany.PileGroupTool,g" -e "s,@ICON@,,g" -e "s,@EXECUTABLE@,PileGroupTool,g" -e "s,@LIBRARY@,PileGroupTool,g" -e "s,@TYPEINFO@,????,g" ../../../Qt/5.10.0/clang_64/mkspecs/macx-clang/Info.plist.app >PileGroupTool.app/Contents/Info.plist + @sed -e "s,@SHORT_VERSION@,2.0,g" -e "s,\$${QMAKE_SHORT_VERSION},2.0,g" -e "s,@FULL_VERSION@,2.0.4,g" -e "s,\$${QMAKE_FULL_VERSION},2.0.4,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" -e "s,@BUNDLEIDENTIFIER@,com.yourcompany.PileGroupTool,g" -e "s,\$${PRODUCT_BUNDLE_IDENTIFIER},com.yourcompany.PileGroupTool,g" -e "s,\$${MACOSX_DEPLOYMENT_TARGET},10.11,g" -e "s,\$${IPHONEOS_DEPLOYMENT_TARGET},,g" -e "s,\$${TVOS_DEPLOYMENT_TARGET},,g" -e "s,\$${WATCHOS_DEPLOYMENT_TARGET},,g" -e "s,@ICON@,,g" -e "s,\$${ASSETCATALOG_COMPILER_APPICON_NAME},,g" -e "s,@EXECUTABLE@,PileGroupTool,g" -e "s,@LIBRARY@,PileGroupTool,g" -e "s,\$${EXECUTABLE_NAME},PileGroupTool,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" ../../../Qt/5.11.2/clang_64/mkspecs/macx-clang/Info.plist.app >PileGroupTool.app/Contents/Info.plist all: Makefile \ PileGroupTool.app/Contents/PkgInfo \ @@ -1135,10 +1159,10 @@ distdir: FORCE @test -d $(DISTDIR) || mkdir -p $(DISTDIR) $(COPY_FILE) --parents $(DIST) $(DISTDIR)/ $(COPY_FILE) --parents qtpileresources.qrc $(DISTDIR)/ - $(COPY_FILE) --parents ../../../Qt/5.10.0/clang_64/mkspecs/features/data/dummy.cpp $(DISTDIR)/ - $(COPY_FILE) --parents ops/Analysis.h ops/AnalysisModel.h ops/ArrayOfTaggedObjects.h ops/ArrayOfTaggedObjectsIter.h ops/BandGenLinLapackSolver.h ops/BandGenLinSOE.h ops/BandGenLinSolver.h ops/BeamFiberMaterial.h ops/BeamFiberMaterial2d.h ops/BeamIntegration.h ops/BinaryFileStream.h ops/CTestNormDispIncr.h ops/Channel.h ops/ColorMap.h ops/CompositeResponse.h ops/ConstraintHandler.h ops/ConvergenceTest.h ops/CrdTransf.h ops/DOF_Group.h ops/DOF_GrpIter.h ops/DOF_Numberer.h ops/DataFileStream.h ops/DispBeamColumn3d.h ops/DispBeamColumn3dWithSensitivity.h ops/Domain.h ops/DomainComponent.h ops/DomainDecompositionAnalysis.h ops/DummyStream.h ops/EigenSOE.h ops/EigenSolver.h ops/ElasticSection3d.h ops/Element.h ops/ElementIter.h ops/ElementResponse.h ops/ElementalLoad.h ops/ElementalLoadIter.h ops/EquiSolnAlgo.h ops/FEM_ObjectBroker.h ops/FE_Datastore.h ops/FE_EleIter.h ops/FE_Element.h ops/Fiber.h ops/FiberResponse.h ops/File.h ops/FileIter.h ops/FrictionModel.h ops/FrictionResponse.h ops/G3Globals.h ops/Graph.h ops/GraphNumberer.h ops/ID.h ops/IncrementalIntegrator.h ops/Information.h ops/Integrator.h ops/LegendreBeamIntegration.h ops/LinearCrdTransf3d.h ops/LinearSOE.h ops/LinearSOESolver.h ops/LinearSeries.h ops/Load.h ops/LoadControl.h ops/LoadPattern.h ops/LoadPatternIter.h ops/MP_Constraint.h ops/MP_ConstraintIter.h ops/MapOfTaggedObjects.h ops/MapOfTaggedObjectsIter.h ops/Material.h ops/MaterialResponse.h ops/Matrix.h ops/MatrixUtil.h ops/MeshRegion.h ops/Message.h ops/MovableObject.h ops/NDMaterial.h ops/NewtonRaphson.h ops/NodalLoad.h ops/NodalLoadIter.h ops/Node.h ops/NodeIter.h ops/OPS_Globals.h ops/OPS_Stream.h ops/ObjectBroker.h ops/Parameter.h ops/ParameterIter.h ops/PenaltyConstraintHandler.h ops/PenaltyMP_FE.h ops/PenaltySP_FE.h ops/PlainMap.h ops/PlainNumberer.h ops/PlaneStrainMaterial.h ops/PlaneStressMaterial.h ops/PlateFiberMaterial.h ops/Pressure_Constraint.h ops/Pressure_ConstraintIter.h ops/PySimple1.h ops/QzSimple1.h ops/RCM.h ops/Recorder.h ops/Renderer.h ops/Response.h ops/SP_Constraint.h ops/SP_ConstraintIter.h ops/SectionForceDeformation.h ops/SimulationInformation.h ops/SingleDomAllSP_Iter.h ops/SingleDomEleIter.h ops/SingleDomLC_Iter.h ops/SingleDomMP_Iter.h ops/SingleDomNodIter.h ops/SingleDomPC_Iter.h ops/SingleDomParamIter.h ops/SingleDomSP_Iter.h ops/SolutionAlgorithm.h ops/StandardStream.h ops/StaticAnalysis.h ops/StaticIntegrator.h ops/StringContainer.h ops/Subdomain.h ops/SubdomainNodIter.h ops/TaggedObject.h ops/TaggedObjectIter.h ops/TaggedObjectStorage.h ops/TimeSeries.h ops/TransformationConstraintHandler.h ops/TransformationDOF_Group.h ops/TransformationFE.h ops/TransientIntegrator.h ops/TzSimple1.h ops/UniaxialMaterial.h ops/Vector.h ops/Vertex.h ops/VertexIter.h ops/ZeroLength.h ops/classTags.h ops/elementAPI.h mainWindow/mainwindow.h includes/pilegrouptool_parameters.h FEA/soilmat.h FEA/pilefeamodeler.h dialogs/materialdbinterface.h dialogs/surveysplashscreen.h utilWindows/copyrightdialog.h utilWindows/dialogabout.h utilWindows/dialogpreferences.h utilWindows/dialogfuturefeature.h plots/systemplotsuper.h plots/systemplotqwt.h plots/resultplotsuper.h plots/resultplotqwt.h ../widgets/Common/FooterWidget.h ../widgets/Common/HeaderWidget.h $(DISTDIR)/ - $(COPY_FILE) --parents ops/Domain.cpp ops/Subdomain.cpp ops/DomainComponent.cpp ops/ArrayOfTaggedObjects.cpp ops/ArrayOfTaggedObjectsIter.cpp ops/MapOfTaggedObjects.cpp ops/MapOfTaggedObjectsIter.cpp ops/SingleDomSP_Iter.cpp ops/SingleDomMP_Iter.cpp ops/SingleDomNodIter.cpp ops/SubdomainNodIter.cpp ops/SingleDomEleIter.cpp ops/SingleDomParamIter.cpp ops/SingleDomAllSP_Iter.cpp ops/SingleDomPC_Iter.cpp ops/LoadPatternIter.cpp ops/NodalLoadIter.cpp ops/FE_EleIter.cpp ops/DOF_GrpIter.cpp ops/ElementalLoadIter.cpp ops/SP_Constraint.cpp ops/MP_Constraint.cpp ops/TaggedObject.cpp ops/ZeroLength.cpp ops/Element.cpp ops/Information.cpp ops/ElasticSection3d.cpp ops/SectionForceDeformation.cpp ops/LinearSeries.cpp ops/TimeSeries.cpp ops/MovableObject.cpp ops/Channel.cpp ops/Node.cpp ops/NodalLoad.cpp ops/Load.cpp ops/LoadPattern.cpp ops/DispBeamColumn3d.cpp ops/CrdTransf.cpp ops/LinearCrdTransf3d.cpp ops/LegendreBeamIntegration.cpp ops/BeamIntegration.cpp ops/Response.cpp ops/ElementResponse.cpp ops/MaterialResponse.cpp ops/CompositeResponse.cpp ops/Matrix.cpp ops/MatrixUtil.cpp ops/ID.cpp ops/Vector.cpp ops/Graph.cpp ops/Vertex.cpp ops/VertexIter.cpp ops/RCM.cpp ops/GraphNumberer.cpp ops/LoadControl.cpp ops/PenaltyConstraintHandler.cpp ops/TransformationConstraintHandler.cpp ops/TransformationDOF_Group.cpp ops/TransformationFE.cpp ops/PenaltySP_FE.cpp ops/PenaltyMP_FE.cpp ops/ConstraintHandler.cpp ops/IncrementalIntegrator.cpp ops/StaticIntegrator.cpp ops/Integrator.cpp ops/PlainNumberer.cpp ops/DOF_Numberer.cpp ops/StaticAnalysis.cpp ops/Analysis.cpp ops/NewtonRaphson.cpp ops/EquiSolnAlgo.cpp ops/SolutionAlgorithm.cpp ops/AnalysisModel.cpp ops/CTestNormDispIncr.cpp ops/ConvergenceTest.cpp ops/LinearSOE.cpp ops/LinearSOESolver.cpp ops/BandGenLinSOE.cpp ops/BandGenLinSolver.cpp ops/BandGenLinLapackSolver.cpp ops/FE_Element.cpp ops/DOF_Group.cpp ops/PySimple1.cpp ops/TzSimple1.cpp ops/QzSimple1.cpp ops/UniaxialMaterial.cpp ops/Material.cpp ops/StandardStream.cpp ops/DummyStream.cpp ops/DummyElementAPI.cpp ops/OPS_Stream.cpp main.cpp mainWindow/mainwindow.cpp FEA/getPyParam.cpp FEA/getQzParam.cpp FEA/getTZParam.cpp FEA/soilmat.cpp FEA/pilefeamodeler.cpp dialogs/materialdbinterface.cpp dialogs/surveysplashscreen.cpp utilWindows/copyrightdialog.cpp utilWindows/dialogabout.cpp utilWindows/dialogpreferences.cpp utilWindows/dialogfuturefeature.cpp plots/systemplotsuper.cpp plots/systemplotqwt.cpp plots/resultplotsuper.cpp plots/resultplotqwt.cpp ../widgets/Common/FooterWidget.cpp ../widgets/Common/HeaderWidget.cpp $(DISTDIR)/ - $(COPY_FILE) --parents mainWindow/mainwindow.ui dialogs/materialdbinterface.ui dialogs/surveysplashscreen.ui utilWindows/copyrightdialog.ui utilWindows/dialogabout.ui utilWindows/dialogpreferences.ui utilWindows/dialogfuturefeature.ui $(DISTDIR)/ + $(COPY_FILE) --parents ../../../Qt/5.11.2/clang_64/mkspecs/features/data/dummy.cpp $(DISTDIR)/ + $(COPY_FILE) --parents ops/Analysis.h ops/AnalysisModel.h ops/ArrayOfTaggedObjects.h ops/ArrayOfTaggedObjectsIter.h ops/BandGenLinLapackSolver.h ops/BandGenLinSOE.h ops/BandGenLinSolver.h ops/BeamFiberMaterial.h ops/BeamFiberMaterial2d.h ops/BeamIntegration.h ops/BinaryFileStream.h ops/CTestNormDispIncr.h ops/Channel.h ops/ColorMap.h ops/CompositeResponse.h ops/ConstraintHandler.h ops/ConvergenceTest.h ops/CrdTransf.h ops/DOF_Group.h ops/DOF_GrpIter.h ops/DOF_Numberer.h ops/DataFileStream.h ops/DispBeamColumn3d.h ops/DispBeamColumn3dWithSensitivity.h ops/Domain.h ops/DomainComponent.h ops/DomainDecompositionAnalysis.h ops/DummyStream.h ops/EigenSOE.h ops/EigenSolver.h ops/ElasticSection3d.h ops/Element.h ops/ElementIter.h ops/ElementResponse.h ops/ElementalLoad.h ops/ElementalLoadIter.h ops/EquiSolnAlgo.h ops/FEM_ObjectBroker.h ops/FE_Datastore.h ops/FE_EleIter.h ops/FE_Element.h ops/Fiber.h ops/FiberResponse.h ops/File.h ops/FileIter.h ops/FrictionModel.h ops/FrictionResponse.h ops/G3Globals.h ops/Graph.h ops/GraphNumberer.h ops/ID.h ops/IncrementalIntegrator.h ops/Information.h ops/Integrator.h ops/LegendreBeamIntegration.h ops/LinearCrdTransf3d.h ops/LinearSOE.h ops/LinearSOESolver.h ops/LinearSeries.h ops/Load.h ops/LoadControl.h ops/LoadPattern.h ops/LoadPatternIter.h ops/MP_Constraint.h ops/MP_ConstraintIter.h ops/MapOfTaggedObjects.h ops/MapOfTaggedObjectsIter.h ops/Material.h ops/MaterialResponse.h ops/Matrix.h ops/MatrixUtil.h ops/MeshRegion.h ops/Message.h ops/MovableObject.h ops/NDMaterial.h ops/NewtonRaphson.h ops/NodalLoad.h ops/NodalLoadIter.h ops/Node.h ops/NodeIter.h ops/OPS_Globals.h ops/OPS_Stream.h ops/ObjectBroker.h ops/Parameter.h ops/ParameterIter.h ops/PenaltyConstraintHandler.h ops/PenaltyMP_FE.h ops/PenaltySP_FE.h ops/PlainMap.h ops/PlainNumberer.h ops/PlaneStrainMaterial.h ops/PlaneStressMaterial.h ops/PlateFiberMaterial.h ops/Pressure_Constraint.h ops/Pressure_ConstraintIter.h ops/PySimple1.h ops/QzSimple1.h ops/RCM.h ops/Recorder.h ops/Renderer.h ops/Response.h ops/SP_Constraint.h ops/SP_ConstraintIter.h ops/SectionForceDeformation.h ops/SimulationInformation.h ops/SingleDomAllSP_Iter.h ops/SingleDomEleIter.h ops/SingleDomLC_Iter.h ops/SingleDomMP_Iter.h ops/SingleDomNodIter.h ops/SingleDomPC_Iter.h ops/SingleDomParamIter.h ops/SingleDomSP_Iter.h ops/SolutionAlgorithm.h ops/StandardStream.h ops/StaticAnalysis.h ops/StaticIntegrator.h ops/StringContainer.h ops/Subdomain.h ops/SubdomainNodIter.h ops/TaggedObject.h ops/TaggedObjectIter.h ops/TaggedObjectStorage.h ops/TimeSeries.h ops/TransformationConstraintHandler.h ops/TransformationDOF_Group.h ops/TransformationFE.h ops/TransientIntegrator.h ops/TzSimple1.h ops/UniaxialMaterial.h ops/Vector.h ops/Vertex.h ops/VertexIter.h ops/ZeroLength.h ops/classTags.h ops/elementAPI.h mainWindow/mainwindow.h includes/pilegrouptool_parameters.h FEA/soilmat.h FEA/pilefeamodeler.h dialogs/materialdbinterface.h utilWindows/copyrightdialog.h utilWindows/dialogabout.h utilWindows/dialogpreferences.h utilWindows/dialogfuturefeature.h plots/systemplotsuper.h plots/systemplotqwt.h plots/resultplotsuper.h plots/resultplotqwt.h ../SimCenterCommon/Common/FooterWidget.h ../SimCenterCommon/Common/HeaderWidget.h $(DISTDIR)/ + $(COPY_FILE) --parents ops/Domain.cpp ops/Subdomain.cpp ops/DomainComponent.cpp ops/ArrayOfTaggedObjects.cpp ops/ArrayOfTaggedObjectsIter.cpp ops/MapOfTaggedObjects.cpp ops/MapOfTaggedObjectsIter.cpp ops/SingleDomSP_Iter.cpp ops/SingleDomMP_Iter.cpp ops/SingleDomNodIter.cpp ops/SubdomainNodIter.cpp ops/SingleDomEleIter.cpp ops/SingleDomParamIter.cpp ops/SingleDomAllSP_Iter.cpp ops/SingleDomPC_Iter.cpp ops/LoadPatternIter.cpp ops/NodalLoadIter.cpp ops/FE_EleIter.cpp ops/DOF_GrpIter.cpp ops/ElementalLoadIter.cpp ops/SP_Constraint.cpp ops/MP_Constraint.cpp ops/TaggedObject.cpp ops/ZeroLength.cpp ops/Element.cpp ops/Information.cpp ops/ElasticSection3d.cpp ops/SectionForceDeformation.cpp ops/LinearSeries.cpp ops/TimeSeries.cpp ops/MovableObject.cpp ops/Channel.cpp ops/Node.cpp ops/NodalLoad.cpp ops/Load.cpp ops/LoadPattern.cpp ops/DispBeamColumn3d.cpp ops/CrdTransf.cpp ops/LinearCrdTransf3d.cpp ops/LegendreBeamIntegration.cpp ops/BeamIntegration.cpp ops/Response.cpp ops/ElementResponse.cpp ops/MaterialResponse.cpp ops/CompositeResponse.cpp ops/Matrix.cpp ops/MatrixUtil.cpp ops/ID.cpp ops/Vector.cpp ops/Graph.cpp ops/Vertex.cpp ops/VertexIter.cpp ops/RCM.cpp ops/GraphNumberer.cpp ops/LoadControl.cpp ops/PenaltyConstraintHandler.cpp ops/TransformationConstraintHandler.cpp ops/TransformationDOF_Group.cpp ops/TransformationFE.cpp ops/PenaltySP_FE.cpp ops/PenaltyMP_FE.cpp ops/ConstraintHandler.cpp ops/IncrementalIntegrator.cpp ops/StaticIntegrator.cpp ops/Integrator.cpp ops/PlainNumberer.cpp ops/DOF_Numberer.cpp ops/StaticAnalysis.cpp ops/Analysis.cpp ops/NewtonRaphson.cpp ops/EquiSolnAlgo.cpp ops/SolutionAlgorithm.cpp ops/AnalysisModel.cpp ops/CTestNormDispIncr.cpp ops/ConvergenceTest.cpp ops/LinearSOE.cpp ops/LinearSOESolver.cpp ops/BandGenLinSOE.cpp ops/BandGenLinSolver.cpp ops/BandGenLinLapackSolver.cpp ops/FE_Element.cpp ops/DOF_Group.cpp ops/PySimple1.cpp ops/TzSimple1.cpp ops/QzSimple1.cpp ops/UniaxialMaterial.cpp ops/Material.cpp ops/StandardStream.cpp ops/DummyStream.cpp ops/DummyElementAPI.cpp ops/OPS_Stream.cpp main.cpp mainWindow/mainwindow.cpp FEA/getPyParam.cpp FEA/getQzParam.cpp FEA/getTZParam.cpp FEA/soilmat.cpp FEA/pilefeamodeler.cpp dialogs/materialdbinterface.cpp utilWindows/copyrightdialog.cpp utilWindows/dialogabout.cpp utilWindows/dialogpreferences.cpp utilWindows/dialogfuturefeature.cpp plots/systemplotsuper.cpp plots/systemplotqwt.cpp plots/resultplotsuper.cpp plots/resultplotqwt.cpp ../SimCenterCommon/Common/FooterWidget.cpp ../SimCenterCommon/Common/HeaderWidget.cpp $(DISTDIR)/ + $(COPY_FILE) --parents mainWindow/mainwindow.ui dialogs/materialdbinterface.ui utilWindows/copyrightdialog.ui utilWindows/dialogabout.ui utilWindows/dialogpreferences.ui utilWindows/dialogfuturefeature.ui $(DISTDIR)/ clean: compiler_clean @@ -1148,6 +1172,7 @@ clean: compiler_clean distclean: clean -$(DEL_FILE) -r PileGroupTool.app + -$(DEL_FILE) .qmake.stash -$(DEL_FILE) Makefile @@ -1165,172 +1190,166 @@ compiler_rcc_make_all: qrc_qtpileresources.cpp compiler_rcc_clean: -$(DEL_FILE) qrc_qtpileresources.cpp qrc_qtpileresources.cpp: qtpileresources.qrc \ - ../../../Qt/5.10.0/clang_64/bin/rcc \ - style.qss \ - images/PileSchematic@0,5x.png \ - images/LayerSchematic@0,5x.png \ - images/LayerSchematic@1x.png \ - images/PileSchematic@1x.png \ - images/PileSchematic.png \ + ../../../Qt/5.11.2/clang_64/bin/rcc \ + help/About/Tatsu.png \ + help/About/Mackenzie-Helnwein-Peter.png \ + help/About/McKenna-Frank.png \ + help/About/PGTabout.html \ + help/About/Arduino-Pedro.png \ + help/About/Ghofrani-Alborz.png \ + resources/PileGroupToolLICENSE.txt \ resources/NHERI-PGT-Icon.icns \ + resources/styleSheets/pgtLinux.qss \ + resources/styleSheets/pgtWin.qss \ + resources/styleSheets/pgtMac.qss \ + resources/styleSheets/pgtStyles.qss \ imagesCommon/sim_logo_footer.png \ imagesCommon/nsf.gif - /Users/pmackenz/Qt/5.10.0/clang_64/bin/rcc -name qtpileresources qtpileresources.qrc -o qrc_qtpileresources.cpp + /Users/pmackenz/Qt/5.11.2/clang_64/bin/rcc -name qtpileresources qtpileresources.qrc -o qrc_qtpileresources.cpp compiler_moc_predefs_make_all: moc_predefs.h compiler_moc_predefs_clean: -$(DEL_FILE) moc_predefs.h -moc_predefs.h: ../../../Qt/5.10.0/clang_64/mkspecs/features/data/dummy.cpp - /Library/Developer/CommandLineTools/usr/bin/clang++ -pipe -stdlib=libc++ -O2 -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -mmacosx-version-min=10.10 -Wall -Wno-unused-variable -std=c++11 -dM -E -o moc_predefs.h ../../../Qt/5.10.0/clang_64/mkspecs/features/data/dummy.cpp +moc_predefs.h: ../../../Qt/5.11.2/clang_64/mkspecs/features/data/dummy.cpp + /Library/Developer/CommandLineTools/usr/bin/clang++ -pipe -stdlib=libc++ -O2 -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.11 -Wall -Wno-unused-variable -std=c++11 -dM -E -o moc_predefs.h ../../../Qt/5.11.2/clang_64/mkspecs/features/data/dummy.cpp -compiler_moc_header_make_all: moc_mainwindow.cpp moc_materialdbinterface.cpp moc_surveysplashscreen.cpp moc_copyrightdialog.cpp moc_dialogabout.cpp moc_dialogpreferences.cpp moc_dialogfuturefeature.cpp moc_systemplotqwt.cpp moc_resultplotsuper.cpp moc_FooterWidget.cpp moc_HeaderWidget.cpp +compiler_moc_header_make_all: moc_mainwindow.cpp moc_materialdbinterface.cpp moc_copyrightdialog.cpp moc_dialogabout.cpp moc_dialogpreferences.cpp moc_dialogfuturefeature.cpp moc_systemplotqwt.cpp moc_resultplotsuper.cpp moc_FooterWidget.cpp moc_HeaderWidget.cpp compiler_moc_header_clean: - -$(DEL_FILE) moc_mainwindow.cpp moc_materialdbinterface.cpp moc_surveysplashscreen.cpp moc_copyrightdialog.cpp moc_dialogabout.cpp moc_dialogpreferences.cpp moc_dialogfuturefeature.cpp moc_systemplotqwt.cpp moc_resultplotsuper.cpp moc_FooterWidget.cpp moc_HeaderWidget.cpp -moc_mainwindow.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ + -$(DEL_FILE) moc_mainwindow.cpp moc_materialdbinterface.cpp moc_copyrightdialog.cpp moc_dialogabout.cpp moc_dialogpreferences.cpp moc_dialogfuturefeature.cpp moc_systemplotqwt.cpp moc_resultplotsuper.cpp moc_FooterWidget.cpp moc_HeaderWidget.cpp +moc_mainwindow.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ mainWindow/mainwindow.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib mainWindow/mainwindow.h -o moc_mainwindow.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib mainWindow/mainwindow.h -o moc_mainwindow.cpp -moc_materialdbinterface.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ +moc_materialdbinterface.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ dialogs/materialdbinterface.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib dialogs/materialdbinterface.h -o moc_materialdbinterface.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib dialogs/materialdbinterface.h -o moc_materialdbinterface.cpp -moc_surveysplashscreen.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ - dialogs/surveysplashscreen.h \ - moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib dialogs/surveysplashscreen.h -o moc_surveysplashscreen.cpp - -moc_copyrightdialog.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ +moc_copyrightdialog.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ utilWindows/copyrightdialog.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib utilWindows/copyrightdialog.h -o moc_copyrightdialog.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib utilWindows/copyrightdialog.h -o moc_copyrightdialog.cpp -moc_dialogabout.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ +moc_dialogabout.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ utilWindows/dialogabout.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib utilWindows/dialogabout.h -o moc_dialogabout.cpp - -moc_dialogpreferences.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QAbstractButton \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QSettings \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qsettings.h \ + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib utilWindows/dialogabout.h -o moc_dialogabout.cpp + +moc_dialogpreferences.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QAbstractButton \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QSettings \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qsettings.h \ utilWindows/dialogpreferences.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib utilWindows/dialogpreferences.h -o moc_dialogpreferences.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib utilWindows/dialogpreferences.h -o moc_dialogpreferences.cpp -moc_dialogfuturefeature.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ +moc_dialogfuturefeature.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ utilWindows/dialogfuturefeature.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib utilWindows/dialogfuturefeature.h -o moc_dialogfuturefeature.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib utilWindows/dialogfuturefeature.h -o moc_dialogfuturefeature.cpp -moc_systemplotqwt.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ +moc_systemplotqwt.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ plots/systemplotsuper.h \ qcp/qcustomplot.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmath.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QtNumeric \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmath.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QtNumeric \ plots/systemplotqwt.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib plots/systemplotqwt.h -o moc_systemplotqwt.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib plots/systemplotqwt.h -o moc_systemplotqwt.cpp -moc_resultplotsuper.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ +moc_resultplotsuper.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ plots/resultplotsuper.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib plots/resultplotsuper.h -o moc_resultplotsuper.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib plots/resultplotsuper.h -o moc_resultplotsuper.cpp -moc_FooterWidget.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ - ../widgets/Common/FooterWidget.h \ +moc_FooterWidget.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ + ../SimCenterCommon/Common/FooterWidget.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib ../widgets/Common/FooterWidget.h -o moc_FooterWidget.cpp - -moc_HeaderWidget.cpp: ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QString \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../widgets/Common/HeaderWidget.h \ + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib ../SimCenterCommon/Common/FooterWidget.h -o moc_FooterWidget.cpp + +moc_HeaderWidget.cpp: ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QString \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../SimCenterCommon/Common/HeaderWidget.h \ moc_predefs.h \ - ../../../Qt/5.10.0/clang_64/bin/moc - /Users/pmackenz/Qt/5.10.0/clang_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/Users/pmackenz/Qt/5.10.0/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Development/SimCenter/PileGroupTool/qwt-6.2/src -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.10.0/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.10.0/clang_64/lib ../widgets/Common/HeaderWidget.h -o moc_HeaderWidget.cpp + ../../../Qt/5.11.2/clang_64/bin/moc + /Users/pmackenz/Qt/5.11.2/clang_64/bin/moc $(DEFINES) --include /Users/pmackenz/Development/SimCenter/PileGroupTool/moc_predefs.h -I/Users/pmackenz/Qt/5.11.2/clang_64/mkspecs/macx-clang -I/Users/pmackenz/Development/SimCenter/PileGroupTool -I/usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers -I/Users/pmackenz/Development/SimCenter/PileGroupTool/.include -I/Users/pmackenz/Development/SimCenter/PileGroupTool/ops -I/Users/pmackenz/Development/SimCenter/PileGroupTool/includes -I/Users/pmackenz/Development/SimCenter/PileGroupTool/mainWindow -I/Users/pmackenz/Development/SimCenter/PileGroupTool/dialogs -I/Users/pmackenz/Development/SimCenter/PileGroupTool/plots -I/Users/pmackenz/Development/SimCenter/PileGroupTool/FEA -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtSvg.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtOpenGL.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtPrintSupport.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtGui.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtConcurrent.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtNetwork.framework/Headers -I/Users/pmackenz/Qt/5.11.2/clang_64/lib/QtCore.framework/Headers -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/9.1.0/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/usr/include -F/Users/pmackenz/Qt/5.11.2/clang_64/lib ../SimCenterCommon/Common/HeaderWidget.h -o moc_HeaderWidget.cpp compiler_moc_objc_header_make_all: compiler_moc_objc_header_clean: compiler_moc_source_make_all: compiler_moc_source_clean: -compiler_uic_make_all: ui_mainwindow.h ui_materialdbinterface.h ui_surveysplashscreen.h ui_copyrightdialog.h ui_dialogabout.h ui_dialogpreferences.h ui_dialogfuturefeature.h +compiler_uic_make_all: ui_mainwindow.h ui_materialdbinterface.h ui_copyrightdialog.h ui_dialogabout.h ui_dialogpreferences.h ui_dialogfuturefeature.h compiler_uic_clean: - -$(DEL_FILE) ui_mainwindow.h ui_materialdbinterface.h ui_surveysplashscreen.h ui_copyrightdialog.h ui_dialogabout.h ui_dialogpreferences.h ui_dialogfuturefeature.h + -$(DEL_FILE) ui_mainwindow.h ui_materialdbinterface.h ui_copyrightdialog.h ui_dialogabout.h ui_dialogpreferences.h ui_dialogfuturefeature.h ui_mainwindow.h: mainWindow/mainwindow.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic \ - ../widgets/Common/HeaderWidget.h \ - ../widgets/Common/FooterWidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QString \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic mainWindow/mainwindow.ui -o ui_mainwindow.h + ../../../Qt/5.11.2/clang_64/bin/uic \ + ../SimCenterCommon/Common/HeaderWidget.h \ + ../SimCenterCommon/Common/FooterWidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QString \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h + /Users/pmackenz/Qt/5.11.2/clang_64/bin/uic mainWindow/mainwindow.ui -o ui_mainwindow.h ui_materialdbinterface.h: dialogs/materialdbinterface.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic dialogs/materialdbinterface.ui -o ui_materialdbinterface.h - -ui_surveysplashscreen.h: dialogs/surveysplashscreen.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic dialogs/surveysplashscreen.ui -o ui_surveysplashscreen.h + ../../../Qt/5.11.2/clang_64/bin/uic + /Users/pmackenz/Qt/5.11.2/clang_64/bin/uic dialogs/materialdbinterface.ui -o ui_materialdbinterface.h ui_copyrightdialog.h: utilWindows/copyrightdialog.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic utilWindows/copyrightdialog.ui -o ui_copyrightdialog.h + ../../../Qt/5.11.2/clang_64/bin/uic + /Users/pmackenz/Qt/5.11.2/clang_64/bin/uic utilWindows/copyrightdialog.ui -o ui_copyrightdialog.h ui_dialogabout.h: utilWindows/dialogabout.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic utilWindows/dialogabout.ui -o ui_dialogabout.h + ../../../Qt/5.11.2/clang_64/bin/uic + /Users/pmackenz/Qt/5.11.2/clang_64/bin/uic utilWindows/dialogabout.ui -o ui_dialogabout.h ui_dialogpreferences.h: utilWindows/dialogpreferences.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic utilWindows/dialogpreferences.ui -o ui_dialogpreferences.h + ../../../Qt/5.11.2/clang_64/bin/uic + /Users/pmackenz/Qt/5.11.2/clang_64/bin/uic utilWindows/dialogpreferences.ui -o ui_dialogpreferences.h ui_dialogfuturefeature.h: utilWindows/dialogfuturefeature.ui \ - ../../../Qt/5.10.0/clang_64/bin/uic - /Users/pmackenz/Qt/5.10.0/clang_64/bin/uic utilWindows/dialogfuturefeature.ui -o ui_dialogfuturefeature.h + ../../../Qt/5.11.2/clang_64/bin/uic + /Users/pmackenz/Qt/5.11.2/clang_64/bin/uic utilWindows/dialogfuturefeature.ui -o ui_dialogfuturefeature.h compiler_rez_source_make_all: compiler_rez_source_clean: @@ -1350,8 +1369,8 @@ Domain.o: ops/Domain.cpp ops/OPS_Globals.h \ ops/classTags.h \ ops/Domain.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/DummyStream.h \ ops/ElementIter.h \ ops/NodeIter.h \ @@ -1406,8 +1425,8 @@ Subdomain.o: ops/Subdomain.cpp ops/Subdomain.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Element.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ @@ -1443,8 +1462,8 @@ DomainComponent.o: ops/DomainComponent.cpp ops/Domain.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/DomainComponent.h \ ops/TaggedObject.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o DomainComponent.o ops/DomainComponent.cpp @@ -1501,8 +1520,8 @@ SingleDomSP_Iter.o: ops/SingleDomSP_Iter.cpp ops/SingleDomSP_Iter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o SingleDomSP_Iter.o ops/SingleDomSP_Iter.cpp @@ -1517,8 +1536,8 @@ SingleDomMP_Iter.o: ops/SingleDomMP_Iter.cpp ops/SingleDomMP_Iter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o SingleDomMP_Iter.o ops/SingleDomMP_Iter.cpp @@ -1533,8 +1552,8 @@ SingleDomNodIter.o: ops/SingleDomNodIter.cpp ops/SingleDomNodIter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o SingleDomNodIter.o ops/SingleDomNodIter.cpp @@ -1548,8 +1567,8 @@ SubdomainNodIter.o: ops/SubdomainNodIter.cpp ops/SubdomainNodIter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Element.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ @@ -1571,8 +1590,8 @@ SingleDomEleIter.o: ops/SingleDomEleIter.cpp ops/SingleDomEleIter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h @@ -1599,8 +1618,8 @@ SingleDomAllSP_Iter.o: ops/SingleDomAllSP_Iter.cpp ops/SingleDomAllSP_Iter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/LoadPattern.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ @@ -1620,8 +1639,8 @@ SingleDomPC_Iter.o: ops/SingleDomPC_Iter.cpp ops/SingleDomPC_Iter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h @@ -1636,8 +1655,8 @@ LoadPatternIter.o: ops/LoadPatternIter.cpp ops/LoadPatternIter.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o LoadPatternIter.o ops/LoadPatternIter.cpp @@ -1653,8 +1672,8 @@ NodalLoadIter.o: ops/NodalLoadIter.cpp ops/NodalLoadIter.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Node.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h @@ -1669,8 +1688,8 @@ FE_EleIter.o: ops/FE_EleIter.cpp ops/FE_EleIter.h \ ops/classTags.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h @@ -1699,8 +1718,8 @@ ElementalLoadIter.o: ops/ElementalLoadIter.cpp ops/ElementalLoadIter.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObjectIter.h \ ops/TaggedObjectStorage.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o ElementalLoadIter.o ops/ElementalLoadIter.cpp @@ -1713,8 +1732,8 @@ SP_Constraint.o: ops/SP_Constraint.cpp ops/SP_Constraint.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h \ ops/FEM_ObjectBroker.h \ ops/elementAPI.h \ @@ -1731,8 +1750,8 @@ MP_Constraint.o: ops/MP_Constraint.cpp ops/MP_Constraint.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h \ ops/ID.h \ ops/Channel.h \ @@ -1756,8 +1775,8 @@ ZeroLength.o: ops/ZeroLength.cpp ops/ZeroLength.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h \ ops/Matrix.h \ ops/Information.h \ @@ -1781,8 +1800,8 @@ Element.o: ops/Element.cpp ops/Element.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h \ ops/ElementResponse.h \ ops/Response.h \ @@ -1799,8 +1818,8 @@ Information.o: ops/Information.cpp ops/Information.h \ ops/classTags.h \ ops/ID.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Information.o ops/Information.cpp @@ -1814,8 +1833,8 @@ ElasticSection3d.o: ops/ElasticSection3d.cpp ops/ElasticSection3d.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h \ ops/ID.h \ ops/Channel.h \ @@ -1835,8 +1854,8 @@ SectionForceDeformation.o: ops/SectionForceDeformation.cpp ops/SectionForceDefor ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h \ ops/ID.h \ ops/Information.h \ @@ -1857,8 +1876,8 @@ LinearSeries.o: ops/LinearSeries.cpp ops/LinearSeries.h \ ops/OPS_Globals.h \ ops/Information.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h \ ops/elementAPI.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o LinearSeries.o ops/LinearSeries.cpp @@ -1897,8 +1916,8 @@ Node.o: ops/Node.cpp ops/Node.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Element.h \ ops/ID.h \ ops/Matrix.h \ @@ -1925,8 +1944,8 @@ NodalLoad.o: ops/NodalLoad.cpp ops/NodalLoad.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Node.h \ ops/Domain.h \ ops/Channel.h \ @@ -1944,8 +1963,8 @@ Load.o: ops/Load.cpp ops/Load.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Load.o ops/Load.cpp LoadPattern.o: ops/LoadPattern.cpp ops/LoadPattern.h \ @@ -1956,8 +1975,8 @@ LoadPattern.o: ops/LoadPattern.cpp ops/LoadPattern.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h \ ops/TimeSeries.h \ ops/Information.h \ @@ -1988,8 +2007,8 @@ DispBeamColumn3d.o: ops/DispBeamColumn3d.cpp ops/DispBeamColumn3d.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h \ ops/Matrix.h \ ops/Node.h \ @@ -2018,8 +2037,8 @@ CrdTransf.o: ops/CrdTransf.cpp ops/CrdTransf.h \ ops/OPS_Stream.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/MapOfTaggedObjects.h \ ops/TaggedObjectStorage.h \ ops/MapOfTaggedObjectsIter.h \ @@ -2031,8 +2050,8 @@ LinearCrdTransf3d.o: ops/LinearCrdTransf3d.cpp ops/Vector.h \ ops/OPS_Stream.h \ ops/MovableObject.h \ ops/classTags.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h \ ops/Node.h \ ops/DomainComponent.h \ @@ -2087,8 +2106,8 @@ ElementResponse.o: ops/ElementResponse.cpp ops/ElementResponse.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o ElementResponse.o ops/ElementResponse.cpp @@ -2103,8 +2122,8 @@ MaterialResponse.o: ops/MaterialResponse.cpp ops/MaterialResponse.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o MaterialResponse.o ops/MaterialResponse.cpp CompositeResponse.o: ops/CompositeResponse.cpp ops/CompositeResponse.h \ @@ -2115,8 +2134,8 @@ CompositeResponse.o: ops/CompositeResponse.cpp ops/CompositeResponse.h \ ops/MovableObject.h \ ops/classTags.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o CompositeResponse.o ops/CompositeResponse.cpp @@ -2126,8 +2145,8 @@ Matrix.o: ops/Matrix.cpp ops/Matrix.h \ ops/MovableObject.h \ ops/classTags.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/ID.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Matrix.o ops/Matrix.cpp @@ -2136,8 +2155,8 @@ MatrixUtil.o: ops/MatrixUtil.cpp ops/Vector.h \ ops/OPS_Stream.h \ ops/MovableObject.h \ ops/classTags.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/MatrixUtil.h \ ops/Matrix.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o MatrixUtil.o ops/MatrixUtil.cpp @@ -2154,8 +2173,8 @@ Vector.o: ops/Vector.cpp ops/Vector.h \ ops/OPS_Stream.h \ ops/MovableObject.h \ ops/classTags.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h \ ops/ID.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Vector.o ops/Vector.cpp @@ -2176,8 +2195,8 @@ Graph.o: ops/Graph.cpp ops/Graph.h \ ops/Channel.h \ ops/FEM_ObjectBroker.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Graph.o ops/Graph.cpp Vertex.o: ops/Vertex.cpp ops/Vertex.h \ @@ -2190,8 +2209,8 @@ Vertex.o: ops/Vertex.cpp ops/Vertex.h \ ops/Channel.h \ ops/FEM_ObjectBroker.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Vertex.o ops/Vertex.cpp VertexIter.o: ops/VertexIter.cpp ops/VertexIter.h \ @@ -2238,8 +2257,8 @@ LoadControl.o: ops/LoadControl.cpp ops/LoadControl.h \ ops/AnalysisModel.h \ ops/LinearSOE.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h \ ops/FE_Element.h \ ops/ID.h \ @@ -2270,8 +2289,8 @@ PenaltyConstraintHandler.o: ops/PenaltyConstraintHandler.cpp ops/PenaltyConstrai ops/OPS_Stream.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/FE_Element.h \ ops/ID.h \ ops/Matrix.h \ @@ -2305,8 +2324,8 @@ TransformationConstraintHandler.o: ops/TransformationConstraintHandler.cpp ops/T ops/OPS_Stream.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/FE_Element.h \ ops/ID.h \ ops/Matrix.h \ @@ -2342,8 +2361,8 @@ TransformationDOF_Group.o: ops/TransformationDOF_Group.cpp ops/TransformationDOF ops/TaggedObject.h \ ops/Domain.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Node.h \ ops/DomainComponent.h \ ops/Matrix.h \ @@ -2366,8 +2385,8 @@ TransformationFE.o: ops/TransformationFE.cpp ops/TransformationFE.h \ ops/classTags.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/Element.h \ ops/DomainComponent.h \ @@ -2392,8 +2411,8 @@ PenaltySP_FE.o: ops/PenaltySP_FE.cpp ops/PenaltySP_FE.h \ ops/classTags.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/Element.h \ ops/DomainComponent.h \ @@ -2417,8 +2436,8 @@ PenaltyMP_FE.o: ops/PenaltyMP_FE.cpp ops/PenaltyMP_FE.h \ ops/classTags.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/Element.h \ ops/DomainComponent.h \ @@ -2440,8 +2459,8 @@ ConstraintHandler.o: ops/ConstraintHandler.cpp ops/ConstraintHandler.h \ ops/OPS_Stream.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/AnalysisModel.h \ ops/Integrator.h \ ops/FE_EleIter.h \ @@ -2461,8 +2480,8 @@ IncrementalIntegrator.o: ops/IncrementalIntegrator.cpp ops/IncrementalIntegrator ops/ID.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/LinearSOE.h \ ops/AnalysisModel.h \ @@ -2483,8 +2502,8 @@ StaticIntegrator.o: ops/StaticIntegrator.cpp ops/StaticIntegrator.h \ ops/ID.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/LinearSOE.h \ ops/AnalysisModel.h \ @@ -2506,8 +2525,8 @@ Integrator.o: ops/Integrator.cpp ops/Integrator.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Integrator.o ops/Integrator.cpp PlainNumberer.o: ops/PlainNumberer.cpp ops/PlainNumberer.h \ @@ -2524,8 +2543,8 @@ PlainNumberer.o: ops/PlainNumberer.cpp ops/PlainNumberer.h \ ops/FE_Element.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/FE_EleIter.h \ ops/Channel.h \ ops/FEM_ObjectBroker.h \ @@ -2549,8 +2568,8 @@ DOF_Numberer.o: ops/DOF_Numberer.cpp ops/DOF_Numberer.h \ ops/FE_Element.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/FE_EleIter.h \ ops/Channel.h \ ops/FEM_ObjectBroker.h \ @@ -2580,8 +2599,8 @@ StaticAnalysis.o: ops/StaticAnalysis.cpp ops/StaticAnalysis.h \ ops/ConstraintHandler.h \ ops/ConvergenceTest.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/StaticIntegrator.h \ ops/Domain.h \ ops/FE_Element.h \ @@ -2601,8 +2620,8 @@ Analysis.o: ops/Analysis.cpp ops/Analysis.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Analysis.o ops/Analysis.cpp NewtonRaphson.o: ops/NewtonRaphson.cpp ops/NewtonRaphson.h \ @@ -2615,8 +2634,8 @@ NewtonRaphson.o: ops/NewtonRaphson.cpp ops/NewtonRaphson.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/AnalysisModel.h \ ops/StaticAnalysis.h \ ops/Analysis.h \ @@ -2640,8 +2659,8 @@ EquiSolnAlgo.o: ops/EquiSolnAlgo.cpp ops/EquiSolnAlgo.h \ ops/LinearSOE.h \ ops/ConvergenceTest.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o EquiSolnAlgo.o ops/EquiSolnAlgo.cpp SolutionAlgorithm.o: ops/SolutionAlgorithm.cpp ops/SolutionAlgorithm.h \ @@ -2664,8 +2683,8 @@ AnalysisModel.o: ops/AnalysisModel.cpp ops/ArrayOfTaggedObjects.h \ ops/AnalysisModel.h \ ops/Domain.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/FE_Element.h \ ops/ID.h \ ops/Matrix.h \ @@ -2690,8 +2709,8 @@ CTestNormDispIncr.o: ops/CTestNormDispIncr.cpp ops/CTestNormDispIncr.h \ ops/Vector.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h \ ops/EquiSolnAlgo.h \ ops/SolutionAlgorithm.h \ @@ -2707,8 +2726,8 @@ ConvergenceTest.o: ops/ConvergenceTest.cpp ops/ConvergenceTest.h \ ops/Vector.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o ConvergenceTest.o ops/ConvergenceTest.cpp LinearSOE.o: ops/LinearSOE.cpp ops/LinearSOE.h \ @@ -2729,8 +2748,8 @@ BandGenLinSOE.o: ops/BandGenLinSOE.cpp ops/BandGenLinSOE.h \ ops/Vector.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/BandGenLinSolver.h \ ops/LinearSOESolver.h \ ops/Matrix.h \ @@ -2752,8 +2771,8 @@ BandGenLinSolver.o: ops/BandGenLinSolver.cpp ops/BandGenLinSolver.h \ ops/Vector.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o BandGenLinSolver.o ops/BandGenLinSolver.cpp BandGenLinLapackSolver.o: ops/BandGenLinLapackSolver.cpp ops/BandGenLinLapackSolver.h \ @@ -2766,8 +2785,8 @@ BandGenLinLapackSolver.o: ops/BandGenLinLapackSolver.cpp ops/BandGenLinLapackSol ops/Vector.h \ ops/OPS_Globals.h \ ops/OPS_Stream.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o BandGenLinLapackSolver.o ops/BandGenLinLapackSolver.cpp FE_Element.o: ops/FE_Element.cpp ops/FE_Element.h \ @@ -2778,8 +2797,8 @@ FE_Element.o: ops/FE_Element.cpp ops/FE_Element.h \ ops/classTags.h \ ops/Matrix.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/TaggedObject.h \ ops/Element.h \ ops/DomainComponent.h \ @@ -2803,8 +2822,8 @@ DOF_Group.o: ops/DOF_Group.cpp ops/DOF_Group.h \ ops/Node.h \ ops/DomainComponent.h \ ops/Vector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Matrix.h \ ops/TransientIntegrator.h \ ops/IncrementalIntegrator.h \ @@ -2821,11 +2840,11 @@ PySimple1.o: ops/PySimple1.cpp ops/PySimple1.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h \ ops/elementAPI.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o PySimple1.o ops/PySimple1.cpp TzSimple1.o: ops/TzSimple1.cpp ops/TzSimple1.h \ @@ -2838,8 +2857,8 @@ TzSimple1.o: ops/TzSimple1.cpp ops/TzSimple1.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h \ ops/elementAPI.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o TzSimple1.o ops/TzSimple1.cpp @@ -2854,8 +2873,8 @@ QzSimple1.o: ops/QzSimple1.cpp ops/QzSimple1.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Channel.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o QzSimple1.o ops/QzSimple1.cpp @@ -2868,8 +2887,8 @@ UniaxialMaterial.o: ops/UniaxialMaterial.cpp ops/UniaxialMaterial.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Information.h \ ops/MaterialResponse.h \ ops/Response.h \ @@ -2887,8 +2906,8 @@ Material.o: ops/Material.cpp ops/Material.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Material.o ops/Material.cpp StandardStream.o: ops/StandardStream.cpp ops/StandardStream.h \ @@ -2897,8 +2916,8 @@ StandardStream.o: ops/StandardStream.cpp ops/StandardStream.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o StandardStream.o ops/StandardStream.cpp DummyStream.o: ops/DummyStream.cpp ops/DummyStream.h \ @@ -2907,8 +2926,8 @@ DummyStream.o: ops/DummyStream.cpp ops/DummyStream.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o DummyStream.o ops/DummyStream.cpp DummyElementAPI.o: ops/DummyElementAPI.cpp ops/elementAPI.h \ @@ -2918,8 +2937,8 @@ DummyElementAPI.o: ops/DummyElementAPI.cpp ops/elementAPI.h \ ops/classTags.h \ ops/Vector.h \ ops/OPS_Globals.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ ops/Node.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ @@ -2935,128 +2954,127 @@ OPS_Stream.o: ops/OPS_Stream.cpp ops/OPS_Stream.h \ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o OPS_Stream.o ops/OPS_Stream.cpp main.o: main.cpp mainWindow/mainwindow.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QApplication \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QFile \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qfile.h \ - dialogs/surveysplashscreen.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QApplication \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QResource \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qresource.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QFile \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qfile.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o main.cpp mainwindow.o: mainWindow/mainwindow.cpp mainWindow/mainwindow.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ ui_mainwindow.h \ utilWindows/copyrightdialog.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ utilWindows/dialogpreferences.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QAbstractButton \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QSettings \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qsettings.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QAbstractButton \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QSettings \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qsettings.h \ utilWindows/dialogabout.h \ utilWindows/dialogfuturefeature.h \ FEA/pilefeamodeler.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QMap \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QFile \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qfile.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QMap \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QFile \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qfile.h \ FEA/soilmat.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QString \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QString \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ plots/systemplotsuper.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ qcp/qcustomplot.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmath.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QtNumeric \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmath.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QtNumeric \ plots/systemplotqcp.h \ plots/systemplotqwt.h \ plots/resultplotsuper.h \ plots/resultplotqcp.h \ plots/resultplotqwt.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QApplication \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDateTime \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdatetime.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QFileDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qfiledialog.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDir \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdir.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QJsonDocument \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qjsondocument.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QJsonArray \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qjsonarray.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QJsonObject \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qjsonobject.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QJsonValue \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qjsonvalue.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QApplication \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDateTime \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdatetime.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QFileDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qfiledialog.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDir \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdir.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QJsonDocument \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qjsondocument.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QJsonArray \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qjsonarray.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QJsonObject \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qjsonobject.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QJsonValue \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qjsonvalue.h \ ops/StandardStream.h \ ops/OPS_Stream.h \ ops/MovableObject.h \ ops/classTags.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o mainwindow.o mainWindow/mainwindow.cpp -getPyParam.o: FEA/getPyParam.cpp ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDebug \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h +getPyParam.o: FEA/getPyParam.cpp ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDebug \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o getPyParam.o FEA/getPyParam.cpp -getQzParam.o: FEA/getQzParam.cpp ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDebug \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h +getQzParam.o: FEA/getQzParam.cpp ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDebug \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o getQzParam.o FEA/getQzParam.cpp getTZParam.o: FEA/getTZParam.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o getTZParam.o FEA/getTZParam.cpp soilmat.o: FEA/soilmat.cpp FEA/soilmat.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QString \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QString \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ mainWindow/mainwindow.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QMainWindow \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o soilmat.o FEA/soilmat.cpp pilefeamodeler.o: FEA/pilefeamodeler.cpp FEA/pilefeamodeler.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QMap \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QFile \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qfile.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QMap \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QFile \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qfile.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ FEA/soilmat.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QString \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QList \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qevent.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QListIterator \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qlist.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTextStream \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDateTime \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdatetime.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QString \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QList \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qevent.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QListIterator \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qlist.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTextStream \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qtextstream.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDateTime \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdatetime.h \ ops/Node.h \ ops/DomainComponent.h \ ops/TaggedObject.h \ @@ -3123,235 +3141,236 @@ pilefeamodeler.o: FEA/pilefeamodeler.cpp FEA/pilefeamodeler.h \ ops/StaticAnalysis.h \ ops/Analysis.h \ ops/AnalysisModel.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDebug \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDebug \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o pilefeamodeler.o FEA/pilefeamodeler.cpp materialdbinterface.o: dialogs/materialdbinterface.cpp dialogs/materialdbinterface.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ ui_materialdbinterface.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o materialdbinterface.o dialogs/materialdbinterface.cpp -surveysplashscreen.o: dialogs/surveysplashscreen.cpp dialogs/surveysplashscreen.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ - ui_surveysplashscreen.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o surveysplashscreen.o dialogs/surveysplashscreen.cpp - copyrightdialog.o: utilWindows/copyrightdialog.cpp utilWindows/copyrightdialog.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ ui_copyrightdialog.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o copyrightdialog.o utilWindows/copyrightdialog.cpp dialogabout.o: utilWindows/dialogabout.cpp utilWindows/dialogabout.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ - ui_dialogabout.h + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ + ui_dialogabout.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QApplication \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QFile \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qfile.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o dialogabout.o utilWindows/dialogabout.cpp dialogpreferences.o: utilWindows/dialogpreferences.cpp utilWindows/dialogpreferences.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QAbstractButton \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QSettings \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qsettings.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QAbstractButton \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QSettings \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qsettings.h \ ui_dialogpreferences.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QApplication \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QApplication \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qapplication.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QTabBar \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qtabbar.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o dialogpreferences.o utilWindows/dialogpreferences.cpp dialogfuturefeature.o: utilWindows/dialogfuturefeature.cpp utilWindows/dialogfuturefeature.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QDialog \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QDialog \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qdialog.h \ ui_dialogfuturefeature.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o dialogfuturefeature.o utilWindows/dialogfuturefeature.cpp systemplotsuper.o: plots/systemplotsuper.cpp plots/systemplotsuper.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ qcp/qcustomplot.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmath.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QtNumeric + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmath.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QtNumeric $(CXX) -c $(CXXFLAGS) $(INCPATH) -o systemplotsuper.o plots/systemplotsuper.cpp systemplotqwt.o: plots/systemplotqwt.cpp plots/systemplotqwt.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ plots/systemplotsuper.h \ qcp/qcustomplot.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmath.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QtNumeric \ - qwt-6.2/src/qwt_plot.h \ - qwt-6.2/src/qwt_global.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qglobal.h \ - qwt-6.2/src/qwt_text.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qsize.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qfont.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmetatype.h \ - qwt-6.2/src/qwt_plot_dict.h \ - qwt-6.2/src/qwt_plot_item.h \ - qwt-6.2/src/qwt_legend_data.h \ - qwt-6.2/src/qwt_graphic.h \ - qwt-6.2/src/qwt_null_paintdevice.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpaintdevice.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpaintengine.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qimage.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpixmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvariant.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qrect.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qlist.h \ - qwt-6.2/src/qwt_scale_map.h \ - qwt-6.2/src/qwt_transform.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h \ - qwt-6.2/src/qwt_interval.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qframe.h \ - qwt-6.2/src/qwt_legend.h \ - qwt-6.2/src/qwt_abstract_legend.h \ - qwt-6.2/src/qwt_plot_curve.h \ - qwt-6.2/src/qwt_plot_seriesitem.h \ - qwt-6.2/src/qwt_scale_div.h \ - qwt-6.2/src/qwt_series_data.h \ - qwt-6.2/src/qwt_samples.h \ - qwt-6.2/src/qwt_point_3d.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qpoint.h \ - qwt-6.2/src/qwt_point_polar.h \ - qwt-6.2/src/qwt_math.h \ - qwt-6.2/src/qwt_series_store.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpen.h \ - qwt-6.2/src/qwt_plot_grid.h \ - qwt-6.2/src/qwt_symbol.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpolygon.h \ - qwt-6.2/src/qwt_plot_shapeitem.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpainterpath.h \ - qwt-6.2/src/qwt_plot_textlabel.h \ - qwt-6.2/src/qwt_picker.h \ - qwt-6.2/src/qwt_event_pattern.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qnamespace.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qobject.h \ - qwt-6.2/src/qwt_plot_picker.h \ - qwt-6.2/src/qwt_picker_machine.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDebug \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QTime \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdatetime.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QFont + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmath.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qnumeric.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QtNumeric \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_global.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qglobal.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_text.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qsize.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qfont.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmetatype.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_dict.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_item.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_legend_data.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_graphic.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_null_paintdevice.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpaintdevice.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpaintengine.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qimage.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpixmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvariant.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qrect.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qlist.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_scale_map.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_transform.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_interval.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qframe.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_legend.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_abstract_legend.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_curve.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_seriesitem.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_scale_div.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_series_data.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_samples.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_point_3d.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qpoint.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_point_polar.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_math.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_series_store.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpen.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_grid.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_symbol.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpolygon.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_shapeitem.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpainterpath.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_textlabel.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_picker.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_event_pattern.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qnamespace.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qobject.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_picker.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_picker_machine.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDebug \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QTime \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdatetime.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QFont $(CXX) -c $(CXXFLAGS) $(INCPATH) -o systemplotqwt.o plots/systemplotqwt.cpp resultplotsuper.o: plots/resultplotsuper.cpp plots/resultplotsuper.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o resultplotsuper.o plots/resultplotsuper.cpp resultplotqwt.o: plots/resultplotqwt.cpp plots/resultplotqwt.h \ plots/resultplotsuper.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QWidget \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QVector \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvector.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QWidget \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QVector \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvector.h \ includes/pilegrouptool_parameters.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QColor \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qcolor.h \ - qwt-6.2/src/qwt_plot.h \ - qwt-6.2/src/qwt_global.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qglobal.h \ - qwt-6.2/src/qwt_text.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qsize.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qfont.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmetatype.h \ - qwt-6.2/src/qwt_plot_dict.h \ - qwt-6.2/src/qwt_plot_item.h \ - qwt-6.2/src/qwt_legend_data.h \ - qwt-6.2/src/qwt_graphic.h \ - qwt-6.2/src/qwt_null_paintdevice.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpaintdevice.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpaintengine.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qimage.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpixmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qvariant.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qrect.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qlist.h \ - qwt-6.2/src/qwt_scale_map.h \ - qwt-6.2/src/qwt_transform.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h \ - qwt-6.2/src/qwt_interval.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qframe.h \ - qwt-6.2/src/qwt_plot_curve.h \ - qwt-6.2/src/qwt_plot_seriesitem.h \ - qwt-6.2/src/qwt_scale_div.h \ - qwt-6.2/src/qwt_series_data.h \ - qwt-6.2/src/qwt_samples.h \ - qwt-6.2/src/qwt_point_3d.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qpoint.h \ - qwt-6.2/src/qwt_point_polar.h \ - qwt-6.2/src/qwt_math.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qmath.h \ - qwt-6.2/src/qwt_series_store.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpen.h \ - qwt-6.2/src/qwt_legend.h \ - qwt-6.2/src/qwt_abstract_legend.h \ - qwt-6.2/src/qwt_plot_shapeitem.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpainterpath.h \ - qwt-6.2/src/qwt_plot_grid.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QPolygonF \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpolygon.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QPointF \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGridLayout \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgridlayout.h + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QColor \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qcolor.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_global.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qglobal.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_text.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qsize.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qfont.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmetatype.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_dict.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_item.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_legend_data.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_graphic.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_null_paintdevice.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpaintdevice.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpaintengine.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qimage.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpixmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qvariant.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qrect.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qlist.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_scale_map.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_transform.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_interval.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qframe.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_curve.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_seriesitem.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_scale_div.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_series_data.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_samples.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_point_3d.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qpoint.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_point_polar.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_math.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qmath.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_series_store.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpen.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_legend.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_abstract_legend.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_shapeitem.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpainterpath.h \ + /usr/local/qwt-6.1.4-svn/lib/qwt.framework/Headers/qwt_plot_grid.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QPolygonF \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpolygon.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QPointF \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGridLayout \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgridlayout.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QPen $(CXX) -c $(CXXFLAGS) $(INCPATH) -o resultplotqwt.o plots/resultplotqwt.cpp -FooterWidget.o: ../widgets/Common/FooterWidget.cpp ../widgets/Common/FooterWidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QLabel \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qlabel.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QLineEdit \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qlineedit.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QPixmap \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qpixmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/QBitmap \ - ../../../Qt/5.10.0/clang_64/lib/QtGui.framework/Headers/qbitmap.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QDebug \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qdebug.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o FooterWidget.o ../widgets/Common/FooterWidget.cpp - -HeaderWidget.o: ../widgets/Common/HeaderWidget.cpp ../widgets/Common/HeaderWidget.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/QString \ - ../../../Qt/5.10.0/clang_64/lib/QtCore.framework/Headers/qstring.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QLabel \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qlabel.h \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/QLineEdit \ - ../../../Qt/5.10.0/clang_64/lib/QtWidgets.framework/Headers/qlineedit.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o HeaderWidget.o ../widgets/Common/HeaderWidget.cpp +FooterWidget.o: ../SimCenterCommon/Common/FooterWidget.cpp ../SimCenterCommon/Common/FooterWidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QLabel \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qlabel.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QLineEdit \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qlineedit.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QPixmap \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qpixmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/QBitmap \ + ../../../Qt/5.11.2/clang_64/lib/QtGui.framework/Headers/qbitmap.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QDebug \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qdebug.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o FooterWidget.o ../SimCenterCommon/Common/FooterWidget.cpp + +HeaderWidget.o: ../SimCenterCommon/Common/HeaderWidget.cpp ../SimCenterCommon/Common/HeaderWidget.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QGroupBox \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qgroupbox.h \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/QString \ + ../../../Qt/5.11.2/clang_64/lib/QtCore.framework/Headers/qstring.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QLabel \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qlabel.h \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/QLineEdit \ + ../../../Qt/5.11.2/clang_64/lib/QtWidgets.framework/Headers/qlineedit.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o HeaderWidget.o ../SimCenterCommon/Common/HeaderWidget.cpp qrc_qtpileresources.o: qrc_qtpileresources.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o qrc_qtpileresources.o qrc_qtpileresources.cpp @@ -3362,9 +3381,6 @@ moc_mainwindow.o: moc_mainwindow.cpp moc_materialdbinterface.o: moc_materialdbinterface.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_materialdbinterface.o moc_materialdbinterface.cpp -moc_surveysplashscreen.o: moc_surveysplashscreen.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_surveysplashscreen.o moc_surveysplashscreen.cpp - moc_copyrightdialog.o: moc_copyrightdialog.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_copyrightdialog.o moc_copyrightdialog.cpp diff --git a/InstallScripts/README.txt b/PGTinstaller/InstallScripts/README.txt similarity index 100% rename from InstallScripts/README.txt rename to PGTinstaller/InstallScripts/README.txt diff --git a/InstallScripts/makeInstallPackagePGT.sh b/PGTinstaller/InstallScripts/makeInstallPackagePGT.sh similarity index 95% rename from InstallScripts/makeInstallPackagePGT.sh rename to PGTinstaller/InstallScripts/makeInstallPackagePGT.sh index 242fcd2..12aaf63 100644 --- a/InstallScripts/makeInstallPackagePGT.sh +++ b/PGTinstaller/InstallScripts/makeInstallPackagePGT.sh @@ -6,9 +6,9 @@ APP=PileGroupTool QWT_FRAMEWORK=qwt.framework -QWT_FRAMEWORK_PATH=/usr/local/qwt-6.2.0-svn/lib/ +QWT_FRAMEWORK_PATH=/usr/local/qwt-6.1.4-svn/lib/ -QT_DEPLOY=/Users/pmackenz/Qt/5.11.1/clang_64/bin/macdeployqt +QT_DEPLOY=/Users/pmackenz/Qt/5.11.2/clang_64/bin/macdeployqt # # ---- do not change anything below this line ----------------------------------- # diff --git a/PGTinstaller/config/NHERI-PGT-Icon.icns b/PGTinstaller/config/NHERI-PGT-Icon.icns new file mode 100644 index 0000000..a370502 Binary files /dev/null and b/PGTinstaller/config/NHERI-PGT-Icon.icns differ diff --git a/PGTinstaller/config/NHERI-PGT-Icon.png b/PGTinstaller/config/NHERI-PGT-Icon.png new file mode 100644 index 0000000..9dbaaa1 Binary files /dev/null and b/PGTinstaller/config/NHERI-PGT-Icon.png differ diff --git a/PGTinstaller/config/SimCenterInstallerLogo.png b/PGTinstaller/config/SimCenterInstallerLogo.png new file mode 100644 index 0000000..ce0d20c Binary files /dev/null and b/PGTinstaller/config/SimCenterInstallerLogo.png differ diff --git a/PGTinstaller/config/macconfig.xml b/PGTinstaller/config/macconfig.xml new file mode 100644 index 0000000..ed4df11 --- /dev/null +++ b/PGTinstaller/config/macconfig.xml @@ -0,0 +1,14 @@ + + + Pile Group Tool + 2.1 + Pile Group Tool Installer + NHERI SimCenter + https://simcenter.designsafe-ci.org/learning-tools/pile-group-tool + NHERI-PGT-Icon + NHERI-PGT-Icon + NHERI-PGT-Icon.png + SimCenterInstallerLogo.png + SimCenter Apps + @HomeDir@/Applications/SimCenterPGT + diff --git a/PGTinstaller/config/watermark.png b/PGTinstaller/config/watermark.png new file mode 100644 index 0000000..9dbaaa1 Binary files /dev/null and b/PGTinstaller/config/watermark.png differ diff --git a/PGTinstaller/config/winconfig.xml b/PGTinstaller/config/winconfig.xml new file mode 100644 index 0000000..ba7bb32 --- /dev/null +++ b/PGTinstaller/config/winconfig.xml @@ -0,0 +1,15 @@ + + + Pile Group Tool + 2.1 + Pile Group Tool Installer + NHERI SimCenter + https://simcenter.designsafe-ci.org/learning-tools/pile-group-tool + NHERI-PGT-Icon + NHERI-PGT-Icon + NHERI-PGT-Icon.png + Modern + SimCenterInstallerLogo.png + SimCenter Apps\Pile Group Tool + @HomeDir@/Applications/SimCenterTools/PGT + diff --git a/PGTinstaller/packages/nheri.simcenter.pgt/meta/installPGT.qs b/PGTinstaller/packages/nheri.simcenter.pgt/meta/installPGT.qs new file mode 100644 index 0000000..bf3df01 --- /dev/null +++ b/PGTinstaller/packages/nheri.simcenter.pgt/meta/installPGT.qs @@ -0,0 +1,12 @@ +function Component() {} + +Component.prototype.createOperations = function() +{ + component.createOperations(); + + if (systemInfo.productType === "windows") + { + component.addOperation("CreateShortcut", "@TargetDir@/PileGroupTool.exe", "@StartMenuDir@/Pile Group Tool.lnk", + "workingDirectory=@TargetDir@", "description=Start SimCenter Pile Group Tool"); + } +} diff --git a/PGTinstaller/packages/nheri.simcenter.pgt/meta/license.txt b/PGTinstaller/packages/nheri.simcenter.pgt/meta/license.txt new file mode 100644 index 0000000..37c09a2 --- /dev/null +++ b/PGTinstaller/packages/nheri.simcenter.pgt/meta/license.txt @@ -0,0 +1,1575 @@ +The SimCenter Pile Group Tool, in source and binary forms, are copyright "The Regents of the University of California". + +The SimCenter PileGroupTool Program makes use of the Qt packages (unmodified): core, gui, widgets, printsupport and network +and the QCustomPlot library (unmodified) for graphics. + +Qt is copyright "The Qt Company Ltd" and licensed under the GNU Lesser General Public License (version 3) which references the GNU General Public License (version 3) + +QCustomPlot (QCP) is copyright by "" and licensed under the GNU Public License version 3 (GPLv3). + +-------------------------------------------------------------------------------------------------------------------------------------- + +The source form is licensed under the following copyright and license: + +BSD 3-Clause License + +Copyright (c) 2017, The Regents of the University of California + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------------ + +The binary form is licensed under the following copyright and license: + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +------------------------------------------------------------------------------------ + +The SimCenter PileGroupTool Program makes use of the Qt packages (unmodified): core, gui, widgets, printsupport and network +and the QCustomPlot library (unmodified) for graphics. + +Qt is copyright "The Qt Company Ltd" and licensed under the GNU Lesser General Public License (version 3) which references the GNU General Public License (version 3) + +QCustomPlot (QCP) is copyright by "" and licensed under the GNU Public License version 3 (GPLv3). + +For reference, these licenses are reproduced below: + +GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + diff --git a/PGTinstaller/packages/nheri.simcenter.pgt/meta/package.xml b/PGTinstaller/packages/nheri.simcenter.pgt/meta/package.xml new file mode 100644 index 0000000..ce969be --- /dev/null +++ b/PGTinstaller/packages/nheri.simcenter.pgt/meta/package.xml @@ -0,0 +1,12 @@ + + + Pile Group Tool + Educational tool for the study of piles and pile groups interacting with layered soil. + 2.1 + 2018-11-05 + + + + true + + diff --git a/PileGroupTool.pro b/PileGroupTool.pro old mode 100755 new mode 100644 index ccd62e5..369c593 --- a/PileGroupTool.pro +++ b/PileGroupTool.pro @@ -1,120 +1,128 @@ -#------------------------------------------------- -# -# Project created by QtCreator 2016-02-17T19:23:56 -# -#------------------------------------------------- - -## common compile issues -# -# -- Windows 10 -# -# * missing lapack.lib and/or blas.lib: -# -# download and install Intel MKL (math kernel library). -# it is free from intel's web site, easy to install, and efficient. -# -# * LNK1104: cannot open file 'qwt.lib' -# -# - in Qt Creator, open existing project PileGroupTool\qwt-6.2\qwt.pro -# - configure the kit to compile in "[your_path]\build-qwt-[....]" (the full path is important) -# - adjust the path in the LIBS line below to reflect your build directory -# - in Qt Creator, PileGroupTool, rerun QMake and Build -# -# -- MacOS -# -# * cannot open file 'qwt.lib' -# -# first time compile only: -# - open Terminal, navigate to your source folder -# - cd qwt-6.2 -# - ~/Qt/5.10.0/clang_64/bin/qmake qwt.pro -# - make -# -# now, and with future updates, work as usual: -# - return to Qt Creator and Build the PileGroupTool. -# -# -- Linux -# - -QT += core gui - -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport network - -TARGET = PileGroupTool -TEMPLATE = app -VERSION = 2.0.3 - -#M_REV = $Rev: $ - -PRODUCT_NAME = 'PileGroupTool' - -#DEFINES += APPLICATION_NAME=\"\\\"$$PRODUCT_NAME\\\"\" -#DEFINES += APPLICATION_VERSION=\"\\\"$$M_VERSION$$member(M_REV, 1)\\\"\" -DEFINES += APP_VERSION=\\\"$$VERSION\\\" - -unix: QMAKE_CXXFLAGS_WARN_ON = -Wall -Wno-unused-variable -std=c++11 -win32: QMAKE_CXXFLAGS += /Y- -wd"4100" - -unix: DEPENDPATH += /usr/local/qwt-6.2.0-svn -win32: DEPENDPATH += C:\Qwt-6.1.3 - -win32: include(C:\qwt-6.1.3\features\qwt.prf) -unix: include(/usr/local/qwt-6.2.0-svn/features/qwt.prf) - -include(OPS_includes.pro) - -INCLUDEPATH += includes -INCLUDEPATH += mainWindow -INCLUDEPATH += dialogs -INCLUDEPATH += plots -INCLUDEPATH += FEA - -unix: QT += svg - -SOURCES += main.cpp \ - mainWindow/mainwindow.cpp \ - FEA/getPyParam.cpp \ - FEA/getQzParam.cpp \ - FEA/getTZParam.cpp \ - FEA/soilmat.cpp \ - FEA/pilefeamodeler.cpp \ - dialogs/materialdbinterface.cpp \ - utilWindows/copyrightdialog.cpp \ - utilWindows/dialogabout.cpp \ - utilWindows/dialogpreferences.cpp \ - utilWindows/dialogfuturefeature.cpp \ - plots/systemplotsuper.cpp \ - plots/systemplotqwt.cpp \ - plots/resultplotsuper.cpp \ - plots/resultplotqwt.cpp \ - ../SimCenterCommon/Common/FooterWidget.cpp \ - ../SimCenterCommon/Common/HeaderWidget.cpp - -HEADERS += \ - mainWindow/mainwindow.h \ - includes/pilegrouptool_parameters.h \ - FEA/soilmat.h \ - FEA/pilefeamodeler.h \ - dialogs/materialdbinterface.h \ - utilWindows/copyrightdialog.h \ - utilWindows/dialogabout.h \ - utilWindows/dialogpreferences.h \ - utilWindows/dialogfuturefeature.h \ - plots/systemplotsuper.h \ - plots/systemplotqwt.h \ - plots/resultplotsuper.h \ - plots/resultplotqwt.h \ - ../SimCenterCommon/Common/FooterWidget.h \ - ../SimCenterCommon/Common/HeaderWidget.h - -FORMS += mainWindow/mainwindow.ui \ - dialogs/materialdbinterface.ui \ - utilWindows/copyrightdialog.ui \ - utilWindows/dialogabout.ui \ - utilWindows/dialogpreferences.ui \ - utilWindows/dialogfuturefeature.ui - -RESOURCES += \ - qtpileresources.qrc - -DISTFILES += +#------------------------------------------------- +# +# Project created by QtCreator 2016-02-17T19:23:56 +# +#------------------------------------------------- + +## common compile issues +# +# -- Windows 10 +# +# * missing lapack.lib and/or blas.lib: +# +# download and install Intel MKL (math kernel library). +# it is free from intel's web site, easy to install, and efficient. +# +# * LNK1104: cannot open file 'qwt.lib' +# +# - in Qt Creator, open existing project PileGroupTool\qwt-6.2\qwt.pro +# - configure the kit to compile in "[your_path]\build-qwt-[....]" (the full path is important) +# - adjust the path in the LIBS line below to reflect your build directory +# - in Qt Creator, PileGroupTool, rerun QMake and Build +# +# -- MacOS +# +# * cannot open file 'qwt.lib' +# +# first time compile only: +# - open Terminal, navigate to your source folder +# - cd qwt-6.1 +# - ~/Qt/5.10.0/clang_64/bin/qmake qwt.pro +# - make +# +# now, and with future updates, work as usual: +# - return to Qt Creator and Build the PileGroupTool. +# +# -- Linux +# + +QT += core gui +unix: QT += svg opengl concurrent +win32: QT += opengl printsupport + + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport network + +TARGET = PileGroupTool +TEMPLATE = app +VERSION = 2.1.0 + +#M_REV = $Rev: $ + +PRODUCT_NAME = 'PileGroupTool' + +#DEFINES += APPLICATION_NAME=\"\\\"$$PRODUCT_NAME\\\"\" +#DEFINES += APPLICATION_VERSION=\"\\\"$$M_VERSION$$member(M_REV, 1)\\\"\" +DEFINES += APP_VERSION=\\\"$$VERSION\\\" + +unix: QMAKE_CXXFLAGS_WARN_ON = -Wall -Wno-unused-variable -std=c++11 +win32: QMAKE_CXXFLAGS += /Y- -wd"4100" + +unix: DEPENDPATH += /usr/local/qwt-6.1.4 +win32: DEPENDPATH += C:\Qwt-6.1.3 + +win32: include(C:\qwt-6.1.3\features\qwt.prf) +unix: include(/usr/local/qwt-6.1.4/features/qwt.prf) + +include(OPS_includes.pro) + +INCLUDEPATH += includes +INCLUDEPATH += mainWindow +INCLUDEPATH += widgets +INCLUDEPATH += dialogs +INCLUDEPATH += plots +INCLUDEPATH += FEA + +SOURCES += main.cpp \ + mainWindow/mainwindow.cpp \ + FEA/getPyParam.cpp \ + FEA/getQzParam.cpp \ + FEA/getTZParam.cpp \ + FEA/soilmat.cpp \ + FEA/pilefeamodeler.cpp \ + dialogs/materialdbinterface.cpp \ + utilWindows/copyrightdialog.cpp \ + utilWindows/dialogabout.cpp \ + utilWindows/dialogpreferences.cpp \ + utilWindows/dialogfuturefeature.cpp \ + plots/systemplotsuper.cpp \ + plots/systemplotqwt.cpp \ + plots/resultplotsuper.cpp \ + plots/resultplotqwt.cpp \ + ../SimCenterCommon/Common/FooterWidget.cpp \ + ../SimCenterCommon/Common/HeaderWidget.cpp \ + widgets/sctrinputgroup.cpp \ + utilWindows/dialogquicktips.cpp + +HEADERS += \ + mainWindow/mainwindow.h \ + includes/pilegrouptool_parameters.h \ + FEA/soilmat.h \ + FEA/pilefeamodeler.h \ + dialogs/materialdbinterface.h \ + utilWindows/copyrightdialog.h \ + utilWindows/dialogabout.h \ + utilWindows/dialogpreferences.h \ + utilWindows/dialogfuturefeature.h \ + plots/systemplotsuper.h \ + plots/systemplotqwt.h \ + plots/resultplotsuper.h \ + plots/resultplotqwt.h \ + ../SimCenterCommon/Common/FooterWidget.h \ + ../SimCenterCommon/Common/HeaderWidget.h \ + widgets/sctrinputgroup.h \ + utilWindows/dialogquicktips.h + +FORMS += mainWindow/mainwindow.ui \ + dialogs/materialdbinterface.ui \ + utilWindows/copyrightdialog.ui \ + utilWindows/dialogabout.ui \ + utilWindows/dialogpreferences.ui \ + utilWindows/dialogfuturefeature.ui \ + widgets/sctrinputgroup.ui \ + utilWindows/dialogquicktips.ui + +RESOURCES += \ + qtpileresources.qrc + +DISTFILES += diff --git a/README.md b/README.md index 40be3a8..b7ea11a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1410668.svg)](https://doi.org/10.5281/zenodo.1410668) + ![missing PGT logo][logo] [logo]: https://nheri-simcenter.github.io/PileGroupTool/docs/NHERI-PGT-Icon.png "Pile Group Tool Logo" @@ -25,14 +27,20 @@ The soil-structure system is modeled using a finite-element platform. Piles are ## Downloads -* __download a binary version__ of the latest release on [simcenter.designsafe-ci.org/learning-tools/pile-group-application/](https://simcenter.designsafe-ci.org/learning-tools/pile-group-application/) -* __download the source__ of latest release at [github.com/NHERI-SimCenter/PileGroupTool/releases](https://github.com/NHERI-SimCenter/PileGroupTool/releases) +* __download a binary version__ of the latest release on [simcenter.designsafe-ci.org/learning-tools/pile-group-tool/](https://simcenter.designsafe-ci.org/learning-tools/pile-group-tool/) ## Software class documentation +* Documentation main page: [https://nheri-simcenter.github.io/PileGroupTool/](https://nheri-simcenter.github.io/PileGroupTool/) * An (as-yet-incomplete) documentation of the code can be found at: [nheri-simcenter.github.io/PileGroupTool/docs/index.html](https://nheri-simcenter.github.io/PileGroupTool/docs/index.html) * view the source on [github.com/NHERI-SimCenter/PileGroupTool](https://github.com/NHERI-SimCenter/PileGroupTool) +Please visit the [Pile Group Tool webpage](https://simcenter.designsafe-ci.org/learning-tools/pile-group-tool/) +for more resources related to this tool. Additionally, this page +provides more information on the NHERI SimCenter, including other SimCenter +applications, FAQ, and how to collaborate. + + # References: 1. Brinch Hansen, J. (1961). “The ultimate resistance of rigid piles against transversal forces.”Bulletin No. 12, Geoteknisk Institute, Copenhagen, 59. diff --git a/help/About/PGTabout.html b/help/About/PGTabout.html index 0ef0aaf..e1c0efb 100644 --- a/help/About/PGTabout.html +++ b/help/About/PGTabout.html @@ -1,4 +1,4 @@ -

This is the SimCenter Educational Pile Group Tool Version 2.0.3

+

This is the SimCenter Educational Pile Group Tool Version 2.1

Please be aware that this software is not intended to be used in any commercial analysis and/or design. All contributors of NHERI SimCenter are free of responsibility and liability resulting from the use of this software. Use of this software is at your own risk. diff --git a/help/QuickTips/QuickTips.html b/help/QuickTips/QuickTips.html new file mode 100644 index 0000000..aaa09b4 --- /dev/null +++ b/help/QuickTips/QuickTips.html @@ -0,0 +1,31 @@ +

Useful Quick Tips

+

+

    +
  • + The Pile Group Tool uses metric units: meters, kN, and kPa. +
    +
  • +
  • + Select piles or soil layers to display and/or change by clicking on the pile inside the System Plot +
    +
  • +
  • + Explore different loading scenarios by switching between: +
    +
      +
    1. Force control: control forces and moments at the center of the pile cap
    2. +
    3. Push-over and Pull-out: use displacement control to experiment with limit states
    4. +
    5. Soil motion profile: a quasi-static approach to model liquefaction effects on the pile group
    6. +
    +
    +
  • +
  • + You can export the current analysis to a fully functional OpenSees inputfile (File menu). +
    +
  • +
  • + Go to Preferences to select which result plots are shown. + This allows you to hide unnecessary result plots or to reactivate those previously hidden. +
    +
  • +
diff --git a/includes/pilegrouptool_parameters.h b/includes/pilegrouptool_parameters.h index 23a16fb..236317b 100644 --- a/includes/pilegrouptool_parameters.h +++ b/includes/pilegrouptool_parameters.h @@ -13,11 +13,16 @@ #define MAX_ELEMENTS_PER_LAYER 40 #define NUM_ELEMENTS_IN_AIR 4 -// #define MAX_FORCE 5000.0 -#define MAX_H_FORCE 1000.0 -#define MAX_V_FORCE 10000.0 -#define MAX_MOMENT 2500.0 -#define MAX_DISP 1.0 +/* + * force limits are given as integers to work with the sliders. + * They are converted to floats when generating the FEA model. + */ + +// #define MAX_FORCE 5000 +#define MAX_H_FORCE 1000 +#define MAX_V_FORCE 10000 +#define MAX_MOMENT 2500 +#define MAX_DISP 1 // global constants #define GAMMA_WATER 9.81 diff --git a/mainWindow/mainwindow.cpp b/mainWindow/mainwindow.cpp index 8a1d4d5..27b07fe 100755 --- a/mainWindow/mainwindow.cpp +++ b/mainWindow/mainwindow.cpp @@ -1,9 +1,11 @@ #include "mainwindow.h" #include "ui_mainwindow.h" #include "math.h" +#include "stdlib.h" #include "utilWindows/copyrightdialog.h" #include "utilWindows/dialogpreferences.h" #include "utilWindows/dialogabout.h" +#include "utilWindows/dialogquicktips.h" #include "utilWindows/dialogfuturefeature.h" #include "pilefeamodeler.h" @@ -102,16 +104,18 @@ MainWindow::MainWindow(bool graphicsModeQCP, QWidget *parent) : // this->updateUI(); ui->headerWidget->setHeadingText("SimCenter Pile Group Tool"); - ui->appliedHorizontalForce->setMaximum(MAX_H_FORCE); - ui->appliedHorizontalForce->setMinimum(-MAX_H_FORCE); - ui->appliedVerticalForce->setMaximum(MAX_V_FORCE); - ui->appliedVerticalForce->setMinimum(-MAX_V_FORCE); - ui->appliedMoment->setMaximum(MAX_MOMENT); - ui->appliedMoment->setMinimum(-MAX_MOMENT); - ui->textBrowser->clear(); + ui->HForceCtrl->setRange(-MAX_H_FORCE, MAX_H_FORCE); + ui->VForceCtrl->setRange(-MAX_V_FORCE, MAX_V_FORCE); + ui->MomentCtrl->setRange(-MAX_MOMENT, MAX_MOMENT); - ui->textBrowser->setHtml("Hints

  • The Pile Group Tool uses metric units: meters, kN, and kPa.
  • Select piles or soil layers to display and/or change by clicking on the pile inside the System Plot
  • go to Preferences to select which result plots are shown.
"); + ui->PushOverCtrl->setRange(-MAX_DISP*1000,MAX_DISP*1000); // display unit is mm + ui->PullOutCtrl->setRange(-MAX_DISP*1000,MAX_DISP*1000); // display unit is mm + + ui->SurfaceDisplacementCtrl->setRange(-MAX_DISP*1000,MAX_DISP*1000); // display unit is mm + ui->Interface12Ctrl->setRange(-100,100); // display units is % + ui->Interface12Ctrl->setRange(-100,100); // display units is % + ui->BaseDisplacementCtrl->setRange(-100,100); // display units is % /* connect a FEA modeler */ pileFEAmodel = new PileFEAmodeler(); @@ -197,16 +201,14 @@ MainWindow::MainWindow(bool graphicsModeQCP, QWidget *parent) : manager->get(QNetworkRequest(QUrl("http://opensees.berkeley.edu/OpenSees/developer/qtPile/use.php"))); //manager->get(QNetworkRequest(QUrl("https://simcenter.designsafe-ci.org/pile-group-analytics/"))); - //this->on_forceTypeSelector_activated(0); - //this->on_horizontalForceSlider_valueChanged(10); - //this->on_forceTypeSelector_activated(0); + this->on_forceTypeSelector_activated(0); } MainWindow::~MainWindow() { delete ui; - if (pileFEAmodel != NULL) delete pileFEAmodel; + if (pileFEAmodel != nullptr) delete pileFEAmodel; } void MainWindow::refreshUI() { @@ -222,13 +224,14 @@ void MainWindow::refreshUI() { else if (loadControlType == LoadControlType::SoilMotion) { ui->forceTypeSelector->setCurrentIndex(2); } else { ui->forceTypeSelector->setCurrentIndex(0); } - ui->appliedHorizontalForce->setValue(P); - ui->appliedVerticalForce->setValue(PV); - ui->appliedMoment->setValue(PMom); + ui->HForceCtrl->setValue(std::nearbyint(P)); + ui->VForceCtrl->setValue(std::nearbyint(PV)); + ui->MomentCtrl->setValue(std::nearbyint(PMom)); - this->on_appliedHorizontalForce_editingFinished(); - this->on_appliedVerticalForce_editingFinished(); - this->on_appliedMoment_editingFinished(); + // TODO + //this->on_appliedHorizontalForce_editingFinished(); + //this->on_appliedVerticalForce_editingFinished(); + //this->on_appliedMoment_editingFinished(); int pileIdx = ui->pileIndex->value() - 1; @@ -356,76 +359,76 @@ void MainWindow::updateResultPlots() if (showDisplacements) { QList *> *> list = pileFEAmodel->getLateralDisplacements(); if (list.size() >= 2) - displPlot->plotResults(*list[0], *list[1]); + displPlot->plotResults(*list[0], *list[1], "Depth [m]", "Lateral Displacement [m]"); } // axial displacements if (showPullOut) { QList *> *> list = pileFEAmodel->getAxialDisplacements(); if (list.size() >= 2) - pullOutPlot->plotResults(*list[0], *list[1]); + pullOutPlot->plotResults(*list[0], *list[1], "Depth [m]", "Axial Displacement [m]"); } // axial if (showAxial) { QList *> *> list = pileFEAmodel->getForce(); if (list.size() >= 2) - axialPlot->plotResults(*list[0], *list[1]); + axialPlot->plotResults(*list[0], *list[1], "Depth [m]", "Axial Force [kN]"); } // shear if (showShear) { QList *> *> list = pileFEAmodel->getShear(); if (list.size() >= 2) - shearPlot->plotResults(*list[0], *list[1]); + shearPlot->plotResults(*list[0], *list[1], "Depth [m]", "Shear Force [kN]"); } // moments if (showMoments) { QList *> *> list = pileFEAmodel->getMoment(); if (list.size() >= 2) - momentPlot->plotResults(*list[0], *list[1]); + momentPlot->plotResults(*list[0], *list[1], "Depth [m]", "Pile Moment [kN.m]"); } // vertical stress if (showStress) { QList *> *> list = pileFEAmodel->getStress(); if (list.size() >= 2) - stressPlot->plotResults(*list[0], *list[1]); + stressPlot->plotResults(*list[0], *list[1], "Depth [m]", "Effective Stress [kPa]"); } // p_ultimate if (showPultimate) { QList *> *> list = pileFEAmodel->getPult(); if (list.size() >= 2) - pultPlot->plotResults(*list[0], *list[1]); + pultPlot->plotResults(*list[0], *list[1], "Depth [m]", "p_ult [kPa]"); } // y_50 if (showY50) { QList *> *> list = pileFEAmodel->getY50(); if (list.size() >= 2) - y50Plot->plotResults(*list[0], *list[1]); + y50Plot->plotResults(*list[0], *list[1], "Depth [m]", "y_50 [m]"); } // t_ultimate if (showTultimate) { QList *> *> list = pileFEAmodel->getTult(); if (list.size() >= 2) - tultPlot->plotResults(*list[0], *list[1]); + tultPlot->plotResults(*list[0], *list[1], "Depth [m]", "t_ult [kPa]"); } // z_50 if (showZ50) { QList *> *> list = pileFEAmodel->getZ50(); if (list.size() >= 2) - z50Plot->plotResults(*list[0], *list[1]); + z50Plot->plotResults(*list[0], *list[1], "Depth [m]", "z_50 [m]"); } } void MainWindow::fetchSettings() { - if (settings != NULL) { delete settings; } + if (settings != nullptr) { delete settings; } settings = new QSettings("NHERI SimCenter","Pile Group Tool"); // general settings @@ -677,7 +680,7 @@ void MainWindow::on_actionReset_triggered() int pileIdx = ui->pileIndex->value() - 1; - ui->appliedHorizontalForce->setValue(P); + ui->HForceCtrl->setValue(std::nearbyint(P)); ui->xOffset->setValue(xOffset[pileIdx]); ui->pileDiameter->setValue(pileDiameter[pileIdx]); ui->freeLength->setValue(L1); @@ -1256,6 +1259,7 @@ bool MainWindow::ReadFile(QString s) fileTypeError = true; if (version.startsWith("1.") ) fileTypeError = false; if (version.startsWith("2.0") ) fileTypeError = false; + if (version.startsWith("2.1") ) fileTypeError = false; if (fileTypeError) { QMessageBox msg(QMessageBox::Information, "Info", "Not a valid model file."); @@ -1558,32 +1562,23 @@ void MainWindow::on_forceTypeSelector_activated(int index) if (index == 0) { loadControlType = LoadControlType::ForceControl; - ui->appliedHorizontalForce->setValue(P); - this->on_appliedHorizontalForce_editingFinished(); - ui->appliedVerticalForce->setValue(P); - this->on_appliedVerticalForce_editingFinished(); - ui->appliedMoment->setValue(P); - this->on_appliedMoment_editingFinished(); + ui->HForceCtrl->setValue(std::nearbyint(P)); + ui->VForceCtrl->setValue(std::nearbyint(PV)); + ui->MomentCtrl->setValue(std::nearbyint(PMom)); } if (index == 1) { loadControlType = LoadControlType::PushOver; - ui->pushoverDisplacement->setValue(HDisp); - this->on_pushoverDisplacement_editingFinished(); - ui->pulloutDisplacement->setValue(VDisp); - this->on_pulloutDisplacement_editingFinished(); + ui->PushOverCtrl->setValue(std::nearbyint(HDisp*1000)); + ui->PullOutCtrl->setValue(std::nearbyint(VDisp*1000)); } if (index == 2) { loadControlType = LoadControlType::SoilMotion; - ui->surfaceDisplacement->setValue(surfaceDisp); - this->on_surfaceDisplacement_editingFinished(); - ui->Interface12->setValue(100.0*percentage12); - this->on_Interface12_editingFinished(); - ui->Interface23->setValue(100.0*percentage23); - this->on_Interface23_editingFinished(); - ui->BaseDisplacement->setValue(100.0*percentageBase); - this->on_BaseDisplacement_editingFinished(); + ui->SurfaceDisplacementCtrl->setValue(std::nearbyint(surfaceDisp*1000)); + ui->Interface12Ctrl->setValue(std::nearbyint(100.0*percentage12)); + ui->Interface23Ctrl->setValue(std::nearbyint(100.0*percentage23)); + ui->BaseDisplacementCtrl->setValue(std::nearbyint(100.0*percentageBase)); } systemPlot->setLoadType(loadControlType); @@ -1594,79 +1589,25 @@ void MainWindow::on_forceTypeSelector_activated(int index) /* ***** loading parameter changes ***** */ -void MainWindow::on_appliedHorizontalForce_editingFinished() -{ - P = ui->appliedHorizontalForce->value(); - - int sliderPosition = nearbyint(100.*P/MAX_H_FORCE); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->horizontalForceSlider->setSliderPosition(sliderPosition); -} - -void MainWindow::on_horizontalForceSlider_valueChanged(int value) +void MainWindow::on_HForceCtrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - P = MAX_H_FORCE * sliderRatio; - - ui->appliedHorizontalForce->setValue(P); + P = double(value); this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_appliedVerticalForce_editingFinished() -{ - PV = ui->appliedHorizontalForce->value(); - - int sliderPosition = nearbyint(100.*PV/MAX_V_FORCE); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->verticalForceSlider->setSliderPosition(sliderPosition); -} - -void MainWindow::on_verticalForceSlider_valueChanged(int value) +void MainWindow::on_VForceCtrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - PV = MAX_V_FORCE * sliderRatio; - - ui->appliedVerticalForce->setValue(PV); + PV = double(value); this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_appliedMoment_editingFinished() -{ - PMom = ui->appliedMoment->value(); - - int sliderPosition = nearbyint(100.*PMom/MAX_MOMENT); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->momentSlider->setSliderPosition(sliderPosition); -} - -void MainWindow::on_momentSlider_valueChanged(int value) +void MainWindow::on_MomentCtrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - PMom = MAX_MOMENT * sliderRatio; - - ui->appliedMoment->setValue(PMom); + PMom = double(value); this->doAnalysis(); this->updateSystemPlot(); @@ -1675,171 +1616,74 @@ void MainWindow::on_momentSlider_valueChanged(int value) - -void MainWindow::on_pushoverDisplacement_editingFinished() +void MainWindow::on_PushOverCtrl_valueChanged(int value) { - HDisp = ui->pushoverDisplacement->value(); - - int sliderPosition = nearbyint(100.*HDisp/MAX_DISP); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->pushoverDisplacementSlider->setSliderPosition(sliderPosition); -} - -void MainWindow::on_pushoverDisplacementSlider_valueChanged(int value) -{ - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - HDisp = MAX_DISP * sliderRatio; - - ui->pushoverDisplacement->setValue(HDisp); - - systemPlot->updateDisplacement(HDisp, VDisp); + HDisp = double(value)/1000.; this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_pulloutDisplacement_editingFinished() -{ - VDisp = ui->pulloutDisplacement->value(); - - int sliderPosition = nearbyint(100.*VDisp/MAX_DISP); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->pulloutDisplacementSlider->setSliderPosition(sliderPosition); -} - -void MainWindow::on_pulloutDisplacementSlider_valueChanged(int value) +void MainWindow::on_PullOutCtrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - VDisp = MAX_DISP * sliderRatio; - - ui->pulloutDisplacement->setValue(VDisp); - - systemPlot->updateDisplacement(HDisp, VDisp); + VDisp = double(value)/1000.; this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_surfaceDisplacement_editingFinished() -{ - surfaceDisp = ui->surfaceDisplacement->value(); - - int sliderPosition = nearbyint(100.*surfaceDisp/MAX_DISP); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - ui->surfaceDisplacementSlider->setSliderPosition(sliderPosition); -} -void MainWindow::on_surfaceDisplacementSlider_valueChanged(int value) +void MainWindow::on_SurfaceDisplacementCtrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - surfaceDisp = MAX_DISP * sliderRatio; - - ui->surfaceDisplacement->setValue(surfaceDisp); + surfaceDisp = double(value)/1000.; systemPlot->updateDispProfile(surfaceDisp, percentage12, percentage23, percentageBase); - this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_Interface12_editingFinished() -{ - percentage12 = ui->Interface12->value()/100.00; - - int sliderPosition = nearbyint(percentage12*100.0); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->Interface12Slider->setSliderPosition(sliderPosition); -} - -void MainWindow::on_Interface12Slider_valueChanged(int value) +void MainWindow::on_Interface12Ctrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - percentage12 = sliderRatio; - - ui->Interface12->setValue(percentage12*100.0); + percentage12 = double(value)/100.; systemPlot->updateDispProfile(surfaceDisp, percentage12, percentage23, percentageBase); - this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_Interface23_editingFinished() +void MainWindow::on_Interface23Ctrl_valueChanged(int value) { - percentage23 = ui->Interface23->value()/100.0; + percentage23 = double(value)/100.; - int sliderPosition = nearbyint(percentage23*100.0); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - - ui->Interface23Slider->setSliderPosition(sliderPosition); + systemPlot->updateDispProfile(surfaceDisp, percentage12, percentage23, percentageBase); + this->doAnalysis(); + this->updateSystemPlot(); } -void MainWindow::on_Interface23Slider_valueChanged(int value) +void MainWindow::on_BaseDisplacementCtrl_valueChanged(int value) { - double sliderRatio; - - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - percentage23 = sliderRatio; - - ui->Interface23->setValue(percentage23*100.0); + percentageBase = double(value)/100.; systemPlot->updateDispProfile(surfaceDisp, percentage12, percentage23, percentageBase); - this->doAnalysis(); this->updateSystemPlot(); } -void MainWindow::on_BaseDisplacement_editingFinished() -{ - percentageBase = ui->BaseDisplacement->value()/100.0; - - int sliderPosition = nearbyint(percentageBase*100.0); - if (sliderPosition > 100) sliderPosition= 100; - if (sliderPosition < -100) sliderPosition=-100; - ui->BaseDisplacementSlider->setSliderPosition(sliderPosition); -} -void MainWindow::on_BaseDisplacementSlider_valueChanged(int value) +void MainWindow::on_actionQuick_Tips_triggered() { - double sliderRatio; + DialogQuickTips *dlg = new DialogQuickTips(); - // slider moved -- the number of steps (100) is a parameter to the slider in mainwindow.ui - sliderRatio = double(value)/100.0; - - percentageBase = sliderRatio; - - ui->BaseDisplacement->setValue(percentageBase*100.0); - - systemPlot->updateDispProfile(surfaceDisp, percentage12, percentage23, percentageBase); + // + // adjust size of application window to the available display + // + QRect rec = QApplication::desktop()->screenGeometry(); + int height = 0.50*rec.height(); + int width = 0.50*rec.width(); + dlg->resize(width, height); - this->doAnalysis(); - this->updateSystemPlot(); + dlg->exec(); + delete dlg; } diff --git a/mainWindow/mainwindow.h b/mainWindow/mainwindow.h index bb424c0..606bfc4 100755 --- a/mainWindow/mainwindow.h +++ b/mainWindow/mainwindow.h @@ -59,6 +59,7 @@ private slots: void on_actionProvide_Feedback_triggered(); void on_action_About_triggered(); + void on_actionQuick_Tips_triggered(); void on_actionPreferences_triggered(); // check boxes @@ -77,15 +78,6 @@ private slots: void on_btn_deletePile_clicked(); void on_btn_newPile_clicked(); - // material table slots - void on_horizontalForceSlider_valueChanged(int value); - void on_verticalForceSlider_valueChanged(int value); - void on_momentSlider_valueChanged(int value); - - void on_appliedHorizontalForce_editingFinished(); - void on_appliedVerticalForce_editingFinished(); - void on_appliedMoment_editingFinished(); - // layer selection slots void on_chkBox_layer1_clicked(); void on_chkBox_layer2_clicked(); @@ -104,19 +96,20 @@ private slots: // Frank's network counter void replyFinished(QNetworkReply*); + // load control slots void on_forceTypeSelector_activated(int index); - void on_pushoverDisplacement_editingFinished(); - void on_pulloutDisplacement_editingFinished(); - void on_pushoverDisplacementSlider_valueChanged(int value); - void on_pulloutDisplacementSlider_valueChanged(int value); - void on_surfaceDisplacement_editingFinished(); - void on_surfaceDisplacementSlider_valueChanged(int value); - void on_Interface12_editingFinished(); - void on_Interface12Slider_valueChanged(int value); - void on_Interface23_editingFinished(); - void on_Interface23Slider_valueChanged(int value); - void on_BaseDisplacement_editingFinished(); - void on_BaseDisplacementSlider_valueChanged(int value); + + void on_HForceCtrl_valueChanged(int value); + void on_VForceCtrl_valueChanged(int value); + void on_MomentCtrl_valueChanged(int value); + + void on_PushOverCtrl_valueChanged(int value); + void on_PullOutCtrl_valueChanged(int value); + + void on_SurfaceDisplacementCtrl_valueChanged(int value); + void on_Interface12Ctrl_valueChanged(int value); + void on_Interface23Ctrl_valueChanged(int value); + void on_BaseDisplacementCtrl_valueChanged(int value); // response to signals from systemPlot void onSystemPlot_pileSelected(int ); @@ -127,8 +120,8 @@ private slots: Q_OBJECT Ui::MainWindow *ui; - SystemPlotSuper *systemPlot = NULL; - PileFEAmodeler *pileFEAmodel = NULL; + SystemPlotSuper *systemPlot = nullptr; + PileFEAmodeler *pileFEAmodel = nullptr; void updateSystemPlot(); void refreshUI(); @@ -186,7 +179,7 @@ private slots: bool inSetupState = true; // system conforming settings and parameters - QSettings *settings = NULL; + QSettings *settings = nullptr; // general settings QString useGraphicsLib; // "QCP" or "QwtAll" or "QwtSystem" or "QwtResults" diff --git a/mainWindow/mainwindow.ui b/mainWindow/mainwindow.ui index c13bfd0..3ff397f 100755 --- a/mainWindow/mainwindow.ui +++ b/mainWindow/mainwindow.ui @@ -27,28 +27,44 @@ - - + + + + + 0 + 0 + + + + + + - - 3 - 0 + + 2 + 3 - 0 - 0 + 300 + 200 + + QTabWidget::West + 0 - + + false + + - System Plot + Pile(s) Configuration - + 0 @@ -61,1298 +77,1129 @@ 0 + + + + + 1 + 2 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + QLayout::SetDefaultConstraint + + + 12 + + + 8 + + + 12 + + + 12 + + + 6 + + + + + 1 + + + 5 + + + + + + + + 0 + 0 + + + + + 0 + 30 + + + + Include toe resistance + + + + + + + + 0 + 0 + + + + + 0 + 30 + + + + Assume rigid connection at pile cap + + + + + + + Embedded length: + + + + + + + GPa + + + + + + + m + + + + + + + 0 + + + 1.000000000000000 + + + 1000.000000000000000 + + + 1.000000000000000 + + + 20.000000000000000 + + + + + + + Young's modulus (E) + + + + + + + Length above ground: + + + + + + + x (offset): + + + + + + + Pile Diameter: + + + + + + + m + + + + + + + + 0 + 0 + + + + + 16777215 + 100 + + + + + 75 + true + + + + Pile properties + + + + + + + Delete this Pile + + + + + + + + + + -99.989999999999995 + + + + + + + Add New Pile + + + + + + + m + + + + + + + 0.050000000000000 + + + 0.050000000000000 + + + 1.000000000000000 + + + + + + + + + + Qt::Horizontal + + + + + + + m + + + + + + + Pile number: + + + + + + + Qt::Vertical + + + + 20 + 1 + + + + + + + - - - - - - 10 - - - 6 - - - 6 - - - 6 - - - 6 - - - - - Qt::Horizontal - - - - - - - - 0 - 1 - - - - - 12 - - - - false - - - - - - - - 1 - 3 - - - - - 300 - 300 - + + + + 1 + 0 + + + + Site Configuration + + + + 0 - - QTabWidget::West + + 0 - + 0 - - false + + 0 - - - Pile(s) Configuration - - - - 0 - - - 0 + + + + QFrame::StyledPanel - - 0 - - - 0 + + QFrame::Raised - - - - - 0 - 2 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - QLayout::SetDefaultConstraint - - - 12 + + + + + + 0 + 20 + - - 8 + + + 16777215 + 100 + - - 12 + + + 75 + true + - - 12 + + Ground water table - - 6 - - - - - 1 - - - 5 - - - - - - - - 0 - 0 - - - - - 0 - 30 - - - - Include toe resistance - - - - - - - - 0 - 0 - - - - - 0 - 30 - - - - Assume rigid connection at pile cap - - - - - - - Embedded length: - - - - - - - GPa - - - - - - - m - - - - - - - 0 - - - 1.000000000000000 - - - 1000.000000000000000 - - - 1.000000000000000 - - - 20.000000000000000 - - - - - - - Young's modulus (E) - - - - - - - Length above ground: - - - - - - - x (offset): - - - - - - - Pile Diameter: - - - - - - - m - - - - - - - - 0 - 0 - - - - - 16777215 - 100 - - - - - 75 - true - - - - Pile properties - - - - - - - Delete this Pile - - - - - - - - - - -99.989999999999995 - - - - - + + + + + + - Add New Pile + Depth below surface: - - - - - - m + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - 0.050000000000000 - - - 0.050000000000000 - - - 1.000000000000000 - - - - - - - - - - Qt::Horizontal - - + + - - + + m - - - - Pile number: - - - - - - - Qt::Vertical - - - - 20 - 1 - - - - - - - - - - - - 1 - 0 - - - - Site Configuration - - - - 0 - - - 0 + + + + + + 0 + 20 + + + + + 16777215 + 100 + + + + + 75 + true + + + + Soil Layers + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + #2 + + + true + + + + + + + #1 + + + true + + + + + + + #3 + + + true + + + + + + + Changing layer + + + + + + + + + + + 6 + + + 6 + + + 12 + + + + + + + + thickness + + + + + + + 1 + + + 1000.000000000000000 + + + 10.000000000000000 + + + + + + + kN/m3 + + + + + + + kN/m3 + + + + + + + + + + friction angle + + + + + + + deg + + + + + + + m + + + + + + + + + + Shear modulus + + + + + + + 1 + + + 60.000000000000000 + + + + + + + MPa + + + + + + + dry unit weight + + + + + + + + 0 + 0 + + + + saturated weight + + + + + + + Layer Properties + + + + + + + + + + Qt::Vertical + + + + 20 + 1 + + + + + + + + + + + + Load Options + + + + 2 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + QFrame::StyledPanel - - 0 + + QFrame::Raised - + + + 6 + + + 6 + + + 6 + + + 6 + + + + + + 75 + true + + + + Load control + + + + + + + + Force control + + + + + Push-over analysis + + + + + Soil motion profile + + + + + + + + + + 0 - - - - QFrame::StyledPanel + + + + 0 - - QFrame::Raised + + 0 - - - - - - 0 - 20 - - - - - 16777215 - 100 - - - - - 75 - true - - - - Ground water table - - - - - - - + + 0 + + + 0 + + + + + + 0 + 0 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + Vertical force: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + kN + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + kN + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Horizontal force: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + kN.m + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Plain + + + + + - Depth below surface: + Moment: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + mm + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Pull-out +displacement - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + mm + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + - - + + - m + Push-over +displacement + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - - - - 0 - 20 - - - - - 16777215 - 100 - - - - - 75 - true - - - - Soil Layers - - - - - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - #2 - - - true - - - - - - - #1 - - - true - - - - - - - #3 - - - true - - - - - - - Changing layer - - - - - - - - - - - 6 - - - 6 - - - 12 - - - - - - - - thickness - - - - - - - 1 - - - 1000.000000000000000 - - - 10.000000000000000 - - - - - - - kN/m3 - - - - - - - kN/m3 - - - - - - - - - - friction angle - - - - - - - deg - - - - - - - m - - - - - - - - - - Shear modulus - - - - - - - 1 - - - 60.000000000000000 - - - - - - - MPa - - - - - - - dry unit weight - - - - - - - - 0 - 0 - - - - saturated weight - - - - - - - Layer Properties - - - - - - - - - - Qt::Vertical - - - - 20 - 1 - - - - - - - - - - - - Load Options - - - - 2 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - QFrame::StyledPanel + + + + + + + + 0 - - QFrame::Raised + + 0 - - - 6 - - - 6 - - - 6 - - - 6 - - - - - - 75 - true - - - - Load control - - - - - - - - Force control - - - - - Push-over analysis - - - - - Soil motion profile - - - - - - - - - - + 0 - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - Vertical force: - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - kN - - - - - - - - 0 - 0 - - - - - 0 - 30 - - - - -100 - - - 100 - - - Qt::Horizontal - - - QSlider::NoTicks - - - - - - - kN - - - - - - - -100 - - - 100 - - - Qt::Horizontal - - - - - - - Horizontal force: - - - - - - - - 0 - 0 - - - - -10000.000000000000000 - - - 100000.000000000000000 - - - 100.000000000000000 - - - - - - - kN.m - - - - - - - - 0 - 0 - - - - -5000.000000000000000 - - - 5000.000000000000000 - - - 50.000000000000000 - - - - - - - Moment: - - - - - - - - 2 - 0 - - - - 1 - - - -10000.000000000000000 - - - 10000.000000000000000 - - - 100.000000000000000 - - - 0.000000000000000 - - - - - - - -100 - - - 100 - - - Qt::Horizontal - - - - - - - - - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Pull-out -displacement - - - - - - - m - - - - - - - -1.000000000000000 - - - 1.000000000000000 - - - 0.050000000000000 - - - - - - - - 0 - 2 - - - - -1.000000000000000 - - - 1.000000000000000 - - - - - - - Push-over -displacement - - - - - - - -100 - - - 100 - - - Qt::Horizontal - - - - - - - m - - - - - - - -100 - - - 100 - - - Qt::Horizontal - - - - - - - - - - - - 0 - - - 0 - - - 0 + + 0 + + + + + QFrame::StyledPanel - - 0 + + QFrame::Raised - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - - - Base + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Interface +Layers 1 & 2: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Surface displacement: - - - - - - - Interface -Layers 2 & 3: - - - - - - - Surface + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + % + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Base displacement: - - - - - - - 100 - - - 5 - - - - - - - Interface -Layers 1 & 2: - - - - - - - - 0 - 0 - - - - -1.000000000000000 - - - 1.000000000000000 - - - 0.050000000000000 - - - - - - - 100 - - - 5 - - - 100 - - - - - - - 100 - - - 5 - - - - - - - 100 - - - 5 - - - 100 - - - Qt::Horizontal - - - - - - - % - - - - - - - m - - - - - - - -100 - - - 100 - - - Qt::Horizontal - - - - - - - % - - - - - - - 100 - - - 5 - - - Qt::Horizontal - - - - - - - 100 - - - 5 - - - Qt::Horizontal - - - - - - - % - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - - - - + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + + 1 + 0 + + + + QFrame::NoFrame + + + QFrame::Raised + + + + + + + Interface +Layers 2 & 3: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + mm + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + % + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + % + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + + + + - + @@ -1370,7 +1217,7 @@ Layers 1 & 2: Qt::LeftToRight - QTabWidget::East + QTabWidget::North 0 @@ -1570,8 +1417,8 @@ Layers 1 & 2: - - + + 0 @@ -1580,14 +1427,45 @@ Layers 1 & 2: - - + + + + + 3 + 0 + + 0 0 + + QTabWidget::North + + + 0 + + + + System Plot + + + + 0 + + + 0 + + + 0 + + + 0 + + + @@ -1598,7 +1476,7 @@ Layers 1 & 2: 0 0 994 - 22 + 21 @@ -1623,6 +1501,7 @@ Layers 1 & 2: Help + @@ -1717,6 +1596,11 @@ Layers 1 & 2: License + + + Quick Tips + + @@ -1732,6 +1616,12 @@ Layers 1 & 2:
../SimCenterCommon/Common/FooterWidget.h
1 + + SCtrInputGroup + QFrame +
sctrinputgroup.h
+ 1 +
diff --git a/plots/resultplotqwt.cpp b/plots/resultplotqwt.cpp index e05f64c..a909152 100644 --- a/plots/resultplotqwt.cpp +++ b/plots/resultplotqwt.cpp @@ -29,7 +29,7 @@ ResultPlotQwt::ResultPlotQwt(QWidget *parent) : { plot = new QwtPlot(this); plot->setCanvasBackground(QBrush(Qt::white)); - grid = NULL; + grid = nullptr; QGridLayout *lyt = new QGridLayout(this); lyt->addWidget(plot,0,0); @@ -52,7 +52,7 @@ void ResultPlotQwt::refresh(void) if (grid) { delete grid; - grid = NULL; + grid = nullptr; } //QVector *xOffset; @@ -164,6 +164,14 @@ void ResultPlotQwt::refresh(void) plot->setAxisScale( QwtPlot::xBottom, xl, xr); plot->setAxisScale( QwtPlot::yLeft, -depthOfLayer[3], L1 + 1.75); + // axes + if (!m_posLabel.isEmpty()) { + plot->setAxisTitle( QwtPlot::yLeft, m_posLabel ); + } + if (!m_dataLabel.isEmpty()) { + plot->setAxisTitle( QwtPlot::xBottom, m_dataLabel ); + } + // Create Background Grid for Plot grid = new QwtPlotGrid(); grid->setMajorPen(QPen(Qt::darkGray, 0.8)); diff --git a/plots/resultplotqwt.h b/plots/resultplotqwt.h index b173947..ec443df 100644 --- a/plots/resultplotqwt.h +++ b/plots/resultplotqwt.h @@ -14,7 +14,7 @@ class ResultPlotQwt : public ResultPlotSuper void refresh(void); protected: - QwtPlot *plot; + QwtPlot *plot; QwtPlotGrid *grid; }; diff --git a/plots/resultplotsuper.cpp b/plots/resultplotsuper.cpp index 7c783f8..a821545 100644 --- a/plots/resultplotsuper.cpp +++ b/plots/resultplotsuper.cpp @@ -88,6 +88,17 @@ void ResultPlotSuper::updateSoil(QVector &layerDepth) void ResultPlotSuper::plotResults(QVector *> &pos, QVector *> &data) { + this->plotResults(pos, data, "", ""); +} + +void ResultPlotSuper::plotResults(QVector *> &pos, + QVector *> &data, + const QString &posLabel, + const QString &dataLabel) +{ + m_posLabel = posLabel; + m_dataLabel = dataLabel; + m_pos.clear(); m_data.clear(); @@ -100,8 +111,6 @@ void ResultPlotSuper::plotResults(QVector *> &pos, { m_data.append(*ptr); } - //m_pos = pos; - //m_data = data; this->refresh(); } diff --git a/plots/resultplotsuper.h b/plots/resultplotsuper.h index 1b3797c..0273cde 100644 --- a/plots/resultplotsuper.h +++ b/plots/resultplotsuper.h @@ -11,6 +11,7 @@ class ResultPlotSuper : public QWidget public: explicit ResultPlotSuper(QWidget *parent = nullptr); virtual void plotResults(QVector *> &, QVector *> &); + virtual void plotResults(QVector *> &, QVector *> &, const QString &, const QString &); virtual void updateSoil(QVector &layerDepth); virtual void refresh(void) = 0; @@ -19,6 +20,9 @@ class ResultPlotSuper : public QWidget public slots: protected: + QString m_posLabel; + QString m_dataLabel; + QVector depthOfLayer = QVector(4, 0.0); QVector > m_pos; // lists of depth of points QVector > m_data; // lists of associated results at points diff --git a/plots/systemplotqwt.cpp b/plots/systemplotqwt.cpp index 7718f57..eefad98 100644 --- a/plots/systemplotqwt.cpp +++ b/plots/systemplotqwt.cpp @@ -73,11 +73,11 @@ SystemPlotQwt::~SystemPlotQwt() PLOTOBJECT SystemPlotQwt::itemAt( const QPoint& pos ) const { PLOTOBJECT emptyObj; - emptyObj.itemPtr = NULL; + emptyObj.itemPtr = nullptr; emptyObj.type = PLType::NONE; emptyObj.index = -1; - if ( plot == NULL ) + if ( plot == nullptr ) return emptyObj; // translate pos into the plot coordinates @@ -142,7 +142,7 @@ PLOTOBJECT SystemPlotQwt::itemAt( const QPoint& pos ) const else { dist = sqrt(QPointF::dotProduct(r,r)); - QPointF r2 = pos - x1; + //QPointF r2 = pos - x1; double d2 = sqrt(QPointF::dotProduct(r,r)); if ( d2 < dist ) { dist = d2; } } @@ -193,6 +193,11 @@ void SystemPlotQwt::on_picker_appended (const QPoint &pos) case PLType::WATER: emit on_groundWaterSelected(); break; + case PLType::CAP: + case PLType::LOAD: + case PLType::OTHER: + case PLType::NONE: + break; } } } @@ -203,7 +208,7 @@ void SystemPlotQwt::refresh() foreach (PLOTOBJECT item, plotItemList) { item.itemPtr->detach(); delete item.itemPtr; - //item.itemPtr = NULL; + //item.itemPtr = nullptr; } plotItemList.clear(); diff --git a/qtpileresources.qrc b/qtpileresources.qrc index 791b236..85d5cd8 100644 --- a/qtpileresources.qrc +++ b/qtpileresources.qrc @@ -14,5 +14,6 @@ help/About/McKenna-Frank.png help/About/PGTabout.html help/About/Tatsu.png + help/QuickTips/QuickTips.html diff --git a/resources/styleSheets/pgtStyles.qss b/resources/styleSheets/pgtStyles.qss index 880555e..3278baa 100644 --- a/resources/styleSheets/pgtStyles.qss +++ b/resources/styleSheets/pgtStyles.qss @@ -163,7 +163,12 @@ QLabel#labelLayerProperties { } QLabel#label_about { - font-size: 24pt; + font-size: 20pt; + font-weight: bold; +} + +QLabel#label_quickTips { + font-size: 20pt; font-weight: bold; } diff --git a/utilWindows/dialogabout.ui b/utilWindows/dialogabout.ui index ae9d0d2..b62dfe5 100644 --- a/utilWindows/dialogabout.ui +++ b/utilWindows/dialogabout.ui @@ -85,7 +85,10 @@ - About Version 2.0.3 + About Pile Group Tool + + + Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft
diff --git a/utilWindows/dialogpreferences.cpp b/utilWindows/dialogpreferences.cpp index e373e49..4efd8dd 100644 --- a/utilWindows/dialogpreferences.cpp +++ b/utilWindows/dialogpreferences.cpp @@ -18,7 +18,7 @@ DialogPreferences::DialogPreferences(QWidget *parent, QSettings *settings) : // initialize the setup file // - if (settings != NULL) { + if (settings != nullptr) { DLGsettings = settings; } else { diff --git a/utilWindows/dialogquicktips.cpp b/utilWindows/dialogquicktips.cpp new file mode 100644 index 0000000..7253b22 --- /dev/null +++ b/utilWindows/dialogquicktips.cpp @@ -0,0 +1,14 @@ +#include "dialogquicktips.h" +#include "ui_dialogquicktips.h" + +DialogQuickTips::DialogQuickTips(QWidget *parent) : + QDialog(parent), + ui(new Ui::DialogQuickTips) +{ + ui->setupUi(this); +} + +DialogQuickTips::~DialogQuickTips() +{ + delete ui; +} diff --git a/utilWindows/dialogquicktips.h b/utilWindows/dialogquicktips.h new file mode 100644 index 0000000..20f0472 --- /dev/null +++ b/utilWindows/dialogquicktips.h @@ -0,0 +1,22 @@ +#ifndef DIALOGQUICKTIPS_H +#define DIALOGQUICKTIPS_H + +#include + +namespace Ui { +class DialogQuickTips; +} + +class DialogQuickTips : public QDialog +{ + Q_OBJECT + +public: + explicit DialogQuickTips(QWidget *parent = nullptr); + ~DialogQuickTips(); + +private: + Ui::DialogQuickTips *ui; +}; + +#endif // DIALOGQUICKTIPS_H diff --git a/utilWindows/dialogquicktips.ui b/utilWindows/dialogquicktips.ui new file mode 100644 index 0000000..efa758d --- /dev/null +++ b/utilWindows/dialogquicktips.ui @@ -0,0 +1,117 @@ + + + DialogQuickTips + + + + 0 + 0 + 400 + 300 + + + + Dialog + + + + + + + 0 + 0 + + + + + 16 + 75 + true + + + + Quick Tips + + + Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft + + + + + + + + 0 + 0 + + + + + + + :/resources/NHERI-PGT-Icon.icns + + + + + + + + qrc:/help/QuickTips/QuickTips.html + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Close + + + true + + + + + + + + + + + buttonBox + accepted() + DialogQuickTips + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + DialogQuickTips + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/utilWindows/quickinfopopup.cpp b/utilWindows/quickinfopopup.cpp index 2c65849..d628f2f 100644 --- a/utilWindows/quickinfopopup.cpp +++ b/utilWindows/quickinfopopup.cpp @@ -44,7 +44,7 @@ QuickInfoPopup::QuickInfoPopup(QString message, QWidget *parent) : QLabel * textLabel = this->findChild("shownText"); - if (message != NULL) + if (message != nullptr) { textLabel->setText(message); } diff --git a/widgets/sctrinputgroup.cpp b/widgets/sctrinputgroup.cpp new file mode 100644 index 0000000..6fe5475 --- /dev/null +++ b/widgets/sctrinputgroup.cpp @@ -0,0 +1,53 @@ +#include "sctrinputgroup.h" +#include "ui_sctrinputgroup.h" + +SCtrInputGroup::SCtrInputGroup(QWidget *parent) : + QFrame(parent), + ui(new Ui::SCtrInputGroup) +{ + ui->setupUi(this); + this->setRange(-100,100); + + connect(ui->slider, SIGNAL(valueChanged(int)), ui->spinBox,SLOT(setValue(int))); + connect(ui->spinBox,SIGNAL(valueChanged(int)), ui->slider, SLOT(setValue(int))); + connect(ui->slider, SIGNAL(valueChanged(int)), this, SIGNAL(valueChanged(int))); +} + +SCtrInputGroup::~SCtrInputGroup() +{ + delete ui; +} + +void SCtrInputGroup::setValue(int val) +{ + ui->slider->setValue(val); + ui->spinBox->setValue(val); +} + +void SCtrInputGroup::setMinimum(int val) +{ + ui->slider->setMinimum(val); + ui->spinBox->setMinimum(val); +} + +void SCtrInputGroup::setMaximum(int val) +{ + ui->slider->setMaximum(val); + ui->spinBox->setMaximum(val); +} + +void SCtrInputGroup::setTickInterval(int val) +{ + ui->slider->setTickInterval(val); +} + +void SCtrInputGroup::setSingleStep(int val) +{ + ui->spinBox->setSingleStep(val); +} + +void SCtrInputGroup::setRange(int min, int max) +{ + ui->slider->setRange(min, max); + ui->spinBox->setRange(min,max); +} diff --git a/widgets/sctrinputgroup.h b/widgets/sctrinputgroup.h new file mode 100644 index 0000000..3fade13 --- /dev/null +++ b/widgets/sctrinputgroup.h @@ -0,0 +1,33 @@ +#ifndef SCTRINPUTGROUP_H +#define SCTRINPUTGROUP_H + +#include + +namespace Ui { +class SCtrInputGroup; +} + +class SCtrInputGroup : public QFrame +{ + Q_OBJECT + +public: + explicit SCtrInputGroup(QWidget *parent = nullptr); + ~SCtrInputGroup(); + +signals: + void valueChanged(int val); + +public slots: + void setValue(int val); + void setMinimum(int val); + void setMaximum(int val); + void setTickInterval(int val); + void setSingleStep(int val); + void setRange(int min, int max); + +private: + Ui::SCtrInputGroup *ui; +}; + +#endif // SCTRINPUTGROUP_H diff --git a/widgets/sctrinputgroup.ui b/widgets/sctrinputgroup.ui new file mode 100644 index 0000000..802acf3 --- /dev/null +++ b/widgets/sctrinputgroup.ui @@ -0,0 +1,58 @@ + + + SCtrInputGroup + + + + 0 + 0 + 415 + 55 + + + + Frame + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + + 0 + + + 0 + + + 1 + + + 0 + + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + + + + + +