stdware / qwindowkit

Cross-platform frameless window framework for Qt. Support Windows, macOS, Linux.
Apache License 2.0
490 stars 78 forks source link

Qt Creator: Cannot open file 'QWKQuickd.lib' #62

Closed S0ulM1ke closed 5 months ago

S0ulM1ke commented 5 months ago

I have recently tried to build qwindowkit to use with Qt Quick application. But I have noticed there no flies related to QWKQuick.pri

include(C:/dev/QWindowKit/share/QWindowKit/qmake/QWKQuick.pri)

As result, an error in Qt Creator: :-1: error: LNK1104: cannot open file 'QWKQuickd.lib'

I've discovered there no files such 'QWKQuickd.lib' or 'QWKQuick.lib' in installation folder.

Maybe I made some mistakes on building?

There is my build prompt for reference:

c:\git\qwindowkit>cmake -B build -S . -DCMAKE_INSTALL_PREFIX=/path/install   -G "Ninja Multi-Config" -DQt6_DIR="C:/Qt/6.4.3/msvc2019_64/lib/cmake/Qt6"

c:\git\qwindowkit>cmake --build build --target install --config Debug 

c:\git\qwindowkit>cmake --build build --target install --config Release
SineStriker commented 5 months ago

-DQWINDOWKIT_BUILD_QUICK=TRUE

S0ulM1ke commented 5 months ago

-DQWINDOWKIT_BUILD_QUICK=TRUE

Thank you. Would try it and report you back