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
when build core with qt5 at 2015 or 2014 got error:
systemas@syslaptop1:~/Devel/moonlightde/mlde.d.moonlightde/builde$ USE_QT5=ON cmake ..
CMake Error at src/core/CMakeLists.txt:57 (include):
include called with wrong number of arguments. include() only takes one
file.
-- No module descriptor found for panel, generating new one.
-- No module descriptor found for panel_dash_xdg, generating new one.
-- Configuring incomplete, errors occurred!
SOLUTION
now with newer cmake variable QT_USE_FILE is empty in liblxqt and qt5xdg was deprecated in cmake for qt5
now should use macro qt5_use_modules instead of QT_USE_FILE and QT_LIBRARIES.
So in your CMakeLists.txt you need to remove line:
INCLUDE (${QT_USE_FILE})
an later using qt5_use_modules is deprecated and target_link_libraries
The text was updated successfully, but these errors were encountered:
when build core with qt5 at 2015 or 2014 got error:
SOLUTION
now with newer cmake variable QT_USE_FILE is empty in liblxqt and qt5xdg was deprecated in cmake for qt5
now should use macro qt5_use_modules instead of QT_USE_FILE and QT_LIBRARIES.
So in your CMakeLists.txt you need to remove line:
INCLUDE (${QT_USE_FILE})
an later using qt5_use_modules is deprecated and target_link_libraries
The text was updated successfully, but these errors were encountered: