-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added example for QT and conan #33
Conversation
QT is moved to a separate CMakePreset, because first time configuring will take a lot of time and only one job is enough to check that.
CMakePresets.json
Outdated
@@ -12,6 +12,9 @@ | |||
"hidden": true, | |||
"binaryDir": "${sourceDir}/out/build/${presetName}", | |||
"installDir": "${sourceDir}/out/install/${presetName}", | |||
"environment": { | |||
"DONT_CONFIGURE_QT": "1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what happens in an environment where this variable is not set at all? From what I see that means that's the same as DONT_CONFIGURE_QT=0, i.e. it will be not not configured.
I am not sure whether that should be the default, and double negatives are a pain. Can this be inverted to "CONFIGURE_QT": "0"
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes you are totally right. Resolved this brainf**k :)
This PR will enable the build for QT but there are some changes which aren't directly connected to the QT:
Following changes are related to QT (only infrastructure was created)