Author Topic: Error In building PBE source code  (Read 3912 times)

ahmed_ma

  • Newbie
  • *
  • Posts: 4
    • View Profile
Error In building PBE source code
« 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

fmk

  • Administrator
  • Full Member
  • *****
  • Posts: 232
    • View Profile
Re: Error In building PBE source code
« Reply #1 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.

« Last Edit: October 11, 2021, 11:10:51 PM by fmk »