I started with v-play and create a new v-play project in Qt creater.
First, I looked at the generated code and tried to understand it.
I have a little idea of Qt and Qml and understand the generated main.cpp
and Main.qml
Then I looked at the .pro
file.
From Qt I know I must add the Qt modules to use them in my program like: QT += widgets qml
or configure the support of c++11: CONFIG += c++11
In the generated .pro file only stand CONFIG += v-play
and nevertheless I can use qml
and widgets
.
My question now is: What does v-play
all contains or what modules does CONFIG += v-play
all include? I looked for a documentation but I haven't found one.
Thanks for your help!