Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:qt [2022/08/03 04:52] – [Install] darron | tools:qt [2022/08/03 05:01] (current) – [Install] darron | ||
---|---|---|---|
Line 48: | Line 48: | ||
==Qt6== | ==Qt6== | ||
- | |||
- | This section is incomplete at this time. | ||
__Base__ | __Base__ | ||
Line 88: | Line 86: | ||
#include < | #include < | ||
- | int main(int argc, char *argv[]) | + | int |
+ | main(int argc, char **argv) | ||
{ | { | ||
- | | + | |
- | | + | |
+ | |||
+ | return 0; | ||
} | } | ||
</ | </ | ||
- | Qt make is used to create a working Makefile which is used to build the application. | + | Qt5 make is used to create a working |
< | < | ||
Line 104: | Line 105: | ||
Hello World! | Hello World! | ||
</ | </ | ||
+ | |||
+ | To build for Qt6, use qmake6 instead of qmake above. | ||