OlivierLDff / Qaterial

🧩 Collection of Material Components based on QtQuickControls2.
https://olivierldff.github.io/Qaterial/
MIT License
292 stars 54 forks source link

Qt project configuration #125

Closed tolgayilmaz86 closed 3 years ago

tolgayilmaz86 commented 3 years ago

Is there any template project using pro files and qmake instead of cmake? Or how can I pull cmake configuration off from cmake and make on myself?

OlivierLDff commented 3 years ago

There is an install target if you want.

mkdir build && cd build
cmake ..
cmake --build . --target Qaterial --config Release -j
cmake --install . [--prefix <install-dir>]

Or CGinMax/Qaterial made a fork to integrate with qmake.

tolgayilmaz86 commented 3 years ago

thanks will try.