On Sat, Jan 19, 2013 at 4:59 AM, Kaka85 <span dir="ltr">&lt;<a href="mailto:hitimeric06@yahoo.fr" target="_blank">hitimeric06@yahoo.fr</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi there!<br>
I would like to share with you the warning I am getting so that you can<br>
advise me:<br>
My concern is to integrate VTK and QT,<br>
I am having an sample Program of the following CMAKELIST file:<br>
#................................................................................<br>
cmake_minimum_required(VERSION 2.8)<br>
<br>
PROJECT(EventQtSlotConnect)<br>
<br>
find_package(VTK REQUIRED)<br>
include(${VTK_USE_FILE})<br>
find_package(Qt REQUIRED)<br>
 INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR})<br>
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})<br>
file(GLOB UI_FILES *.ui)<br>
file(GLOB QT_WRAP *.h)<br>
file(GLOB CXX_FILES *.cxx)<br>
QT_WRAP_UI(UISrcs ${UI_FILES})<br>
QT_WRAP_CPP(MOCSrcs ${QT_WRAP})<br>
add_executable(EventQtSlotConnect MACOSX_BUNDLE ${CXX_FILES} ${UISrcs}<br>
${MOCSrcs})<br>
<br>
if(VTK_LIBRARIES)<br>
  if(${VTK_VERSION} VERSION_LESS &quot;6&quot;)<br>
    target_link_libraries(EventQtSlotConnect ${VTK_LIBRARIES} QVTK)<br>
  else()<br>
    target_link_libraries(EventQtSlotConnect ${VTK_LIBRARIES})<br>
  endif()<br>
else()<br>
  target_link_libraries(EventQtSlotConnect vtkHybrid QVTK vtkViews<br>
${QT_LIBRARIES})<br>
endif()<br>
...........................................................<br>
<br>
So when I configure the source code with CMake, I get warning message like:<br>
<br>
CMake Error at CMakeLists.txt:17 (QT_WRAP_UI):<br>
qt_wrap_ui called with incorrect number of arguments<br>
CMake Error at CMakeLists.txt:18 (QT_WRAP_CPP):<br>
<br>
qt_wrap_cpp called with incorrect number of arguments<br>
Configuring incomplete, errors occurred!<br>
<br>
The issue is I don&#39;t know the correct number of arguments of qt_wrap_ui, and<br>
qt_wr_cpp.<br>
<br>
I have been stucked for a long time.<br>
Any help can be appreciated!!<br></blockquote><div><br></div>It sounds to be like the GLOB CMake commands are not returning any matches. Do you have .ui and .cxx files in the same directory as your CMakeLists.txt?<br clear="all">
<div><br>David</div></div>