4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-09 09:19:33 +00:00

Try to fix a build problem on macos.

Hopefully this will also fix the "won't load" problem on other *ni:wqx.

svn path=/trunk/kdesupport/qca/; revision=614088
This commit is contained in:
Brad Hards 2006-12-16 09:29:35 +00:00
parent 3f73505ff8
commit 0a0e2daecc

@ -4,7 +4,11 @@ SET(QCA_GNUPG_SOURCES qca-gnupg.cpp gpgop.cpp gpgproc/gpgproc.cpp gpgproc/sproce
MY_AUTOMOC( QCA_GNUPG_SOURCES )
ADD_LIBRARY(qca-gnupg SHARED ${QCA_GNUPG_SOURCES})
QT4_WRAP_CPP( EXTRA_GNUPG_SOURCES gpgop.h )
QT4_WRAP_CPP( EXTRA_GNUPG_SOURCES gpgproc/gpgproc.h )
QT4_WRAP_CPP( EXTRA_GNUPG_SOURCES gpgproc/sprocess.h )
ADD_LIBRARY(qca-gnupg SHARED ${QCA_GNUPG_SOURCES} ${EXTRA_GNUPG_SOURCES} )
INCLUDE_DIRECTORIES(gpgproc)
TARGET_LINK_LIBRARIES(qca-gnupg ${QT_QTCORE_LIBRARY} qca)