[Interest] [RESOLVED] Re: Need help on QCA library, just migrated from Linux to Mac ...

2015-01-01 Thread Aaron Lewis
Never mind. Just got hint from the pkgbuild file. Whatever guide you found online, e.g -lqca -LXX, is a fake and won't work. The correct one is: INCLUDEPATH += /usr/local/homebrew/Cellar/qca/2.1.0/include/ LIBS += -F/usr/local/homebrew/Cellar/qca/2.1.0/lib -framework qca Just link the headers t

[Interest] Need help on QCA library, just migrated from Linux to Mac ...

2015-01-01 Thread Aaron Lewis
Hi, I installed qt4.8 and qca with homebrew. The qmake tool chain works. But when I compile a qca application (that compiles in Linux) It could not find the QtCrypto/qca.h: ./widget.h:5:10: fatal error: 'QtCrypto/qca.h' file not found #include Looks like the QCA library is installed here, %> l

Re: [Interest] Problem building docs in dev branch and out-of-source build

2015-01-01 Thread Guido Seifert
Thank you. Worked like a charm. Happy New Year just got a bit happier. :-) Happy New Year to you, too. Guido > Hi, > > On 01/01/2015 18:16, Guido Seifert wrote: > > Hiya, > > for the new year I gave me a new Qt5. :-) > > > > It is the dev branch. And for the first time I tried an out-of-source

Re: [Interest] Problem building docs in dev branch and out-of-source build

2015-01-01 Thread Sean Harmer
Hi, On 01/01/2015 18:16, Guido Seifert wrote: > Hiya, > for the new year I gave me a new Qt5. :-) > > It is the dev branch. And for the first time I tried an out-of-source build > for Qt5. > No problem for qt itself, but something is very wrong with the docs. > > I did the usual > 'make docs' and

[Interest] Problem building docs in dev branch and out-of-source build

2015-01-01 Thread Guido Seifert
Hiya, for the new year I gave me a new Qt5. :-) It is the dev branch. And for the first time I tried an out-of-source build for Qt5. No problem for qt itself, but something is very wrong with the docs. I did the usual 'make docs' and 'make install_docs' and for out-of-source: make install_global

Re: [Interest] Connecting output of an external process to a QML component

2015-01-01 Thread Alejandro Exojo
El Wednesday 31 December 2014, Daniel França escribió: > I'm instantiating the C++ class via setContextProperty, so it's a singleton > object. I would not say that this is a singleton object. You register one already instantated object instead of a class, but it could be or not a singleton. > Th