Skip to content

Commit

Permalink
fmk - adding libcurl to pro file for unix
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Sep 29, 2024
2 parents 4c8cd16 + 58789a7 commit d0d8cf9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions EE-UQ.pro
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ win32{
}


linux{

linux {
LIBS += -lcurl
}

win32 {
Expand Down
15 changes: 8 additions & 7 deletions WorkflowAppEE_UQ.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#include <SC_RemoteAppTool.h>
#include <RemoteOpenSeesApp.h>
#include <QList>
#include <ShakerMaker.h>
#include "CustomizedItemModel.h"

#include <Utils/ProgramOutputDialog.h>
Expand Down Expand Up @@ -225,7 +226,7 @@ WorkflowAppEE_UQ::setMainWindow(MainWindowWorkflowApp* window) {
// Add Simple Test
//

/*

RemoteOpenSeesApp *theOpenSeesApp = new RemoteOpenSeesApp();

QString testAppName = "simcenter-opensees-frontera";
Expand All @@ -239,20 +240,20 @@ WorkflowAppEE_UQ::setMainWindow(MainWindowWorkflowApp* window) {
theToolDialog);

theToolDialog->addTool(theOpenSeesTool, "OpenSees@DesignSafe");
// // Set the path to the input file
QAction *showOpenSees = toolsMenu->addAction("&OpenSees@DesignSafe");
connect(showOpenSees, &QAction::triggered, this,[this, theDialog=theToolDialog, theEmp = theOpenSeesApp] {
theDialog->showTool("OpenSees@DesignSafe");
});

*/




ShakerMaker *theShakerMaker = new ShakerMaker();
theToolDialog->addTool(theShakerMaker, "ShakerMaker");



connect(showShakerMaker, &QAction::triggered, this,[this, theDialog=theToolDialog, theEmp = theShakerMaker] {
theDialog->showTool("ShakerMaker");
});

//
// Add Tools to menu bar
//
Expand Down

0 comments on commit d0d8cf9

Please sign in to comment.