mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-19 02:27:49 +08:00
c0d22c88ea
* [vcpkg_install_qmake] Add vcpkg_install_qmake and convert existing ports to use it. [vcpkg_configure_qmake] Add 'staticlib' to CONFIG in static builds * [vcpkg_configure_qmake] Don't specify DESTDIR * [libqglviewer][vcpkg_configure_qmake] Add staticlib CONFIG only for libqglviewer * [qt5-base] Increment version to track changes in vcpkg_configure_qmake()
25 lines
642 B
Markdown
25 lines
642 B
Markdown
# vcpkg_install_qmake
|
|
|
|
Build and install a qmake project.
|
|
|
|
## Usage:
|
|
```cmake
|
|
vcpkg_install_qmake(...)
|
|
```
|
|
|
|
## Parameters:
|
|
See [`vcpkg_build_qmake()`](vcpkg_build_qmake.md).
|
|
|
|
## Notes:
|
|
This command transparently forwards to [`vcpkg_build_qmake()`](vcpkg_build_qmake.md).
|
|
|
|
Additionally, this command will copy produced .libs/.dlls/.as/.dylibs/.sos to the appropriate
|
|
staging directories.
|
|
|
|
## Examples
|
|
|
|
* [libqglviewer](https://github.com/Microsoft/vcpkg/blob/master/ports/libqglviewer/portfile.cmake)
|
|
|
|
## Source
|
|
[scripts/cmake/vcpkg_install_qmake.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_install_qmake.cmake)
|