SimCenter Forum

Research in Natural Hazards Engineering => Performance Based Engineering (PBE) => Topic started by: ahmed_ma on October 09, 2021, 03:11:13 AM

Title: Error In building PBE source code
Post by: ahmed_ma on October 09, 2021, 03:11:13 AM
I downloaded PBE source code

but some how there is a file missing in the github version

#include <curl/curl.h>
this file is called in "AgaveCurl.h" in the common project
but it doesn't exist
Title: Re: Error In building PBE source code
Post by: fmk on October 11, 2021, 05:33:33 AM
The curl code is not included in the released software (there are other software packages we use as well that we do not release as they are released by others). Curl is however installed by the conan package manager before cmake is run (if interested curl and the other software we use are listed in the conanfile.py).

mkdir build
cd build
conan install .. --build missing
qmake ../PBE.pro
make

if on a windows machine, use nmake instead of make. let me know if it does not work for you.