On 7/11/06, <b class="gmail_sendername">Peter Kümmel</b> &lt;<a href="mailto:syntheticpp@gmx.net">syntheticpp@gmx.net</a>&gt; wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Could you post the cmake file, without it it's hard to help.<br>Peter</blockquote><div><br>Yeah, obviously, forgot that ;)<br>
<br>This is the most recent file i tried.<br><br>
--<br>
</div></div>project(conversationview)<br><br>find_package(KDE4 REQUIRED)<br>include (KDE4Defaults)<br>include_directories (${KDE4_KDECORE_INCLUDES} ${QT_INCLUDES})<br>add_definitions (${KDE4_DEFINITIONS} ${QT_DEFINITIONS})
<br>link_directories (${KDE4_LIBRARIES})<br><br>set ( conversationSources<br>&nbsp;main.cpp<br>&nbsp;message.cpp<br>&nbsp;mailview.cpp<br>&nbsp;foldermodel.cpp<br>&nbsp;dummykonadiadapter.cpp<br>&nbsp;conversationdelegate.cpp<br>&nbsp;conversation.cpp<br>)
<br><br>kde4_automoc( ${conversationSources} )<br>kde4_add_executable(conversationview ${conversationSources})<br>target_link_libraries (conversationview ${KDE4_KDECORE_LIBS} )<br><br>