Open
Conversation
Move files to new places and modify project files for qmake to save compatibility
277a74e to
9170ab1
Compare
Author
|
In source tree run: |
9170ab1 to
db9dabe
Compare
cc0edd5 to
b185152
Compare
b185152 to
9d8cb9e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What?
I made transition from QMake to CMake
Why?
CMake is de facto a standard build system in C++. The Qt Company, starting with Qt6, abandons QMake in favor of CMake to build Qt
How?
I used a modular CMake structure.
cmake folder is for helper scripts, future updates to it could include configuration files that can be incorporated into other projects to help them find and utilize the project.
packaging folder contains configuration for CPack to create a package.
share folder is for resources that will be used in the output executable.
Testing?
Although the project itself does not have any tests, its building system is being tested using GitHub Actions.
Anything Else?
QMake build process remains unchanged.