qt - QWebview examples: only runs in specific directory -


i'm trying create qt app webview. started out simple ui nothing more qwebview. when trying ui->webview->seturl("http://google.com"); application crashes on openssl.

auto configuration failed 3348:error:0200107b:system library:fopen:unknown error:.\crypto\bio\bss_file.c:169:fopen('c:cygwinhomeadministrateurbuildslavefull-windows_xp_32buildgpac_extra_libs/c:cygwinhomeadministrateurbuildslavefull-windows_xp_32buildgpac_extra_libs/ssl/openssl.cnf','rb') 3348:error:2006d002:bio routines:bio_new_file:system lib:.\crypto\bio\bss_file.c:174: 3348:error:0e078002:configuration file routines:def_load:system lib:.\crypto\conf\conf_def.c:199: 

i continues trying examples. domtraversal 1 of easier applications tried build , run this. works. changed url "https://gmail.com" works (so no ssl issues there). when run debug or release .exe works (qt's bin path in path var there no dll problems), when move executable say, desktop not run. i've tried several different things:

  • when have tree same amount of folders "build-domtraversal-desktop_qt_5_0_2_msvc2010_32bit-debug" folder build in continues release executable in (so: c:/test/test/test/test/test/test/build-domtraversal-desktop_qt_5_0_2_msvc2010_32bit-debug/release/app.exe) works
  • when add folders inside release folder (...-debug/release/test/test/app.exe) works
  • when change name of either "build-domtraversal-desktop_qt_5_0_2_msvc2010_32bit-*" or release folders not work (exept end of build folder name)
  • when change name of app works.
  • when change folder structure d:/* not work
  • when turn off shadow build not work anymore in debug mode either. unless move output .exe folder structure did work.

there must path somewhere in .pro.user or somewhere else haven't thought about. can point me in right direction? cause right i'm starting believe in magic...


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -