Search found 7 matches

by PabloC
Wed Jul 12, 2017 8:00 am
Forum: Issues, bugs, etc.
Topic: [Load] Can't guess file format: unhandled file extension 'XXX'
Replies: 7
Views: 6788

Re: [Load] Can't guess file format: unhandled file extension 'XXX'

Hi Daniel. Debug and Release libs both go in the same directory. The only difference is the 'd' at the end of the file name in debug mode. As a short term solution I use this command : [ ! -f install_manifest.txt ] || xargs rm < install_manifest.txt It removes every previously installed files (liste...
by PabloC
Tue Jul 11, 2017 2:19 pm
Forum: Issues, bugs, etc.
Topic: [Load] Can't guess file format: unhandled file extension 'XXX'
Replies: 7
Views: 6788

Re: [Load] Can't guess file format: unhandled file extension 'XXX'

All right, here is the solution I found : cd path/to/cc mkdir build cd build cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/.local make install Here, everything works as expected. But when in need of the Debug version : cmake .. -DCMAKE_BUILD_TYPE=Debug make install And here, CC does n...
by PabloC
Wed Jun 28, 2017 12:30 pm
Forum: Issues, bugs, etc.
Topic: [Load] Can't guess file format: unhandled file extension 'XXX'
Replies: 7
Views: 6788

Re: [Load] Can't guess file format: unhandled file extension 'XXX'

Can't find what's wrong for now. It works fine with a fresh clone using an up-to-date KUbuntu. EDIT : the main difference here is that there are format filters on the *buntu distros and they're not here anymore using the ArchLinux. As far as my understanding of the process goes, you rely on the file...
by PabloC
Tue Jun 27, 2017 7:39 am
Forum: Issues, bugs, etc.
Topic: [Load] Can't guess file format: unhandled file extension 'XXX'
Replies: 7
Views: 6788

Re: [Load] Can't guess file format: unhandled file extension 'XXX'

Hi Pablo, Many problems have occurred with ArchLinux recently... Is it happening when dropping a file on the 3D view, or even when you use the loading dialog and specify a specific file filter? Can you maybe run CC in debug mode and trace into "FileIOFilter::LoadFromFile"? Same behavior f...
by PabloC
Mon Jun 26, 2017 1:58 pm
Forum: Issues, bugs, etc.
Topic: [Load] Can't guess file format: unhandled file extension 'XXX'
Replies: 7
Views: 6788

[Load] Can't guess file format: unhandled file extension 'XXX'

Hi. I'm on an ArchLinux computer and I updated my distro this morning (including Qt I guess). I'm not able to load any file in CloudCompare anymore. Don't know if it's related but neither a brand new clone nor my development version can now load files. PS: I'm using regular ASCII files at the moment.
by PabloC
Sat Sep 05, 2015 5:58 pm
Forum: Plugins
Topic: [SOLVED] Can't load my plugin once it embeds a QDialog window.
Replies: 2
Views: 2776

Re: Can't load my plugin once it embeds a QDialog window.

Hi Daniel,

Fortunately you were right!
It's now time to change my naming habits.

Many thanks.
Pablo C.
by PabloC
Fri Sep 04, 2015 2:57 pm
Forum: Plugins
Topic: [SOLVED] Can't load my plugin once it embeds a QDialog window.
Replies: 2
Views: 2776

[SOLVED] Can't load my plugin once it embeds a QDialog window.

Hi! I'm having trouble using my plug-in in Cloud Compare after trying to use a QDialog window as in the RANSAC plug-in. My plug-in compiles flawlessly and gives the expected outputs if using fixed values but once I try to add a dialog window, it does not show-up anymore in the plug-ins list (even if...