Skip to content

Commit

Permalink
fmk - adding pro file for MultiplePEER_Events
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Oct 1, 2018
1 parent 05beb37 commit 2a5443f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions WorkflowApps.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ TEMPLATE = subdirs
SUBDIRS = applications/createEDP/StandardEarthquakeEDP.pro \
applications/createSAM/OpenSeesInput.pro \
applications/createEVENT/MultipleSimCenterEvents.pro \
applications/createEVENT/MultiplePEER_Events.pro \
applications/performSIMULATION/OpenSeesPreprocessor.pro \
applications/performSIMULATION/OpenSeesPostprocessor.pro \
applications/performUQ/extractEDP.pro \
Expand Down
20 changes: 20 additions & 0 deletions applications/createEVENT/MultiplePEER_Events.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
TEMPLATE = app
CONFIG += console

DESTDIR = $$PWD
SOURCES += MultiplePEER_Events.cpp

macx{
INCLUDEPATH+="/usr/local/jansson/include"
LIBS+="/usr/local/jansson/lib/libjansson.a"
}

#Assuming jansson library share the same parent folder with the app and is built with the same compiler
win32{
INCLUDEPATH+="../../../jansson/build/include"
LIBS+="../../../jansson/build/x64/Release/jansson.lib"
}

unix:!macx{
LIBS+="/usr/lib/x86_64-linux-gnu/libjansson.a"
}

0 comments on commit 2a5443f

Please sign in to comment.