You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pretty sure that this issue has a lot to do with my bad understanding of CMake. I'd like to compile PythonQt with Qt5. After cloning the "add-qt5-branch", I started Cmake-gui, set the source code directory to the newly downloaded branch and pressed 'Configure'.
This returns the following error :
CMake Error in CMakeLists.txt:
A logical block opening on the line
C:/Users/Me/Desktop/PythonQt-add-qt5-support/CMakeLists.txt:30 (foreach)
is not closed.
This lets me think that there may be a missing endforeach around line 33 in CMakeFile.txt, but since it is in a block of code for Qt versions less than 5, I added the following line just above the 'Build options' block to compile with Qt5 :
set(PythonQt_QT_VERSION "5")
I've only set PythonQt_wrap_QtCore to true, and the Qt5Core_DIR accordingly, and the QMake configure step now returns :
CMake Error at CMakeLists.txt:244 (qt5_wrap_ui):
Unknown CMake command "qt5_wrap_ui".
Is there something I can do to make this work ?
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
I'm pretty sure that this issue has a lot to do with my bad understanding of CMake. I'd like to compile PythonQt with Qt5. After cloning the "add-qt5-branch", I started Cmake-gui, set the source code directory to the newly downloaded branch and pressed 'Configure'.
This returns the following error :
This lets me think that there may be a missing
endforeach
around line 33 in CMakeFile.txt, but since it is in a block of code for Qt versions less than 5, I added the following line just above the 'Build options' block to compile with Qt5 :I've only set
PythonQt_wrap_QtCore
to true, and theQt5Core_DIR
accordingly, and the QMake configure step now returns :Is there something I can do to make this work ?
Thanks
The text was updated successfully, but these errors were encountered: