From be32198fdb04e5c5ae24894d4755800205e71592 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:43:51 +0200 Subject: [PATCH] qmake: add page (#15507) * Create qmake.md * Update pages/linux/qmake.md Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com> * Update qmake.md --------- Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com> --- pages/linux/qmake.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/qmake.md diff --git a/pages/linux/qmake.md b/pages/linux/qmake.md new file mode 100644 index 0000000000..a6b3332f67 --- /dev/null +++ b/pages/linux/qmake.md @@ -0,0 +1,24 @@ +# qmake + +> Generate Makefiles from Qt project files. +> More information: . + +- Generate a `Makefile` from a project file in the current directory: + +`qmake` + +- Specify `Makefile` and project file locations: + +`qmake -o {{path/to/Makefile}} {{path/to/project_file.pro}}` + +- Generate a default project file: + +`qmake -project` + +- Compile a project: + +`qmake && make` + +- Enable debug mode: + +`qmake -d`