-
Notifications
You must be signed in to change notification settings - Fork 7.4k
add vcpkg-qmake for qt6 #20963
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
add vcpkg-qmake for qt6 #20963
Changes from all commits
9b3abf4
fd16572
81257a2
550ce76
485c6cf
4063877
a82d2d5
a995150
6b13b87
1cb95e9
8760355
813cdc0
7378e60
279f1a4
593b5c5
1b50592
41c9abc
6370ab8
f064ade
4497c58
02a964a
5eea85a
052f2f9
91e899a
e5a34af
18cde51
371e176
f6b0b67
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # vcpkg-qmake | ||
|
|
||
| This port contains qmake functions for dealing with a QMake buildsystem. | ||
|
|
||
| In the common case, `vcpkg_qmake_configure()` (with appropriate arguments) | ||
| followed by `vcpkg_install_qmake()` will be enough to build and install a port. | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| Copyright (c) Microsoft Corporation | ||
|
|
||
| All rights reserved. | ||
|
|
||
| MIT License | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
| this software and associated documentation files (the "Software"), to deal in | ||
| the Software without restriction, including without limitation the rights to | ||
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
| of the Software, and to permit persons to whom the Software is furnished to do | ||
| so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| file(INSTALL | ||
| "${CMAKE_CURRENT_LIST_DIR}/vcpkg_qmake_configure.cmake" | ||
| "${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake" | ||
| "${CMAKE_CURRENT_LIST_DIR}/copyright" | ||
| DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
|
|
||
| set(VCPKG_POLICY_EMPTY_PACKAGE enabled) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| include_guard(GLOBAL) | ||
| include("${CMAKE_CURRENT_LIST_DIR}/../vcpkg-cmake/vcpkg-port-config.cmake") | ||
| include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_qmake_configure.cmake") | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "name": "vcpkg-qmake", | ||
| "version-date": "2021-10-23", | ||
| "supports": "native", | ||
| "dependencies": [ | ||
| "pkgconf", | ||
| { | ||
| "name": "qtbase", | ||
| "default-features": false | ||
| }, | ||
| "vcpkg-cmake" | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,167 @@ | ||
| #[===[.md: | ||
| # vcpkg_qmake_configure | ||
|
|
||
| Configure a qmake-based project. | ||
|
|
||
| ###User setable triplet variables: | ||
| VCPKG_OSX_DEPLOYMENT_TARGET: Determines QMAKE_MACOSX_DEPLOYMENT_TARGET | ||
| VCPKG_QMAKE_COMMAND: Path to qmake. (default: "${CURRENT_HOST_INSTALLED_DIR}/tools/Qt6/bin/qmake${VCPKG_HOST_EXECUTABLE_SUFFIX}") | ||
| VCPKG_QT_CONF_(RELEASE|DEBUG): Path to qt.config being used for RELEASE/DEBUG. (default: "${CURRENT_INSTALLED_DIR}/tools/Qt6/qt_(release|debug).conf") | ||
| VCPKG_QMAKE_OPTIONS(_RELEASE|_DEBUG)?: Extra options to pass to QMake | ||
|
|
||
| ```cmake | ||
| vcpkg_qmake_configure( | ||
| SOURCE_PATH <pro_file_path> | ||
| [QMAKE_OPTIONS arg1 [arg2 ...]] | ||
| [QMAKE_OPTIONS_RELEASE arg1 [arg2 ...]] | ||
| [QMAKE_OPTIONS_DEBUG arg1 [arg2 ...]] | ||
| [OPTIONS arg1 [arg2 ...]] | ||
| [OPTIONS_RELEASE arg1 [arg2 ...]] | ||
| [OPTIONS_DEBUG arg1 [arg2 ...]] | ||
| ) | ||
| ``` | ||
|
|
||
| ### SOURCE_PATH | ||
| The path to the *.pro qmake project file. | ||
|
|
||
| ### QMAKE_OPTIONS, QMAKE_OPTIONS\_RELEASE, QMAKE_OPTIONS\_DEBUG | ||
| options directly passed to qmake with the form QMAKE_X=something or CONFIG=something | ||
|
|
||
| ### OPTIONS, OPTIONS\_RELEASE, OPTIONS\_DEBUG | ||
| The options passed after -- to qmake. | ||
|
|
||
| #]===] | ||
| include_guard(GLOBAL) | ||
| function(vcpkg_qmake_configure) | ||
Neumann-A marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| cmake_parse_arguments(PARSE_ARGV 0 arg "" "SOURCE_PATH" "QMAKE_OPTIONS;QMAKE_OPTIONS_RELEASE;QMAKE_OPTIONS_DEBUG;OPTIONS;OPTIONS_RELEASE;OPTIONS_DEBUG") | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Assuming the dependencies are converted to native dependencies, it might make sense to calculate a "QMAKE_HOST_DIR" from
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't get the added benefit of that. |
||
| vcpkg_cmake_get_vars(detected_file) | ||
| include("${detected_file}") | ||
|
|
||
| if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") | ||
| vcpkg_list(APPEND arg_QMAKE_OPTIONS "CONFIG-=shared") | ||
| vcpkg_list(APPEND arg_QMAKE_OPTIONS "CONFIG*=static") | ||
| else() | ||
| vcpkg_list(APPEND arg_QMAKE_OPTIONS "CONFIG-=static") | ||
| vcpkg_list(APPEND arg_QMAKE_OPTIONS "CONFIG*=shared") | ||
| vcpkg_list(APPEND arg_QMAKE_OPTIONS_DEBUG "CONFIG*=separate_debug_info") | ||
| endif() | ||
| if(VCPKG_TARGET_IS_WINDOWS AND VCPKG_CRT_LINKAGE STREQUAL "static") | ||
| vcpkg_list(APPEND _csc_QMAKE_OPTIONS "CONFIG*=static-runtime") | ||
| endif() | ||
|
|
||
| if(DEFINED VCPKG_OSX_DEPLOYMENT_TARGET) | ||
| set(ENV{QMAKE_MACOSX_DEPLOYMENT_TARGET} "${VCPKG_OSX_DEPLOYMENT_TARGET}") | ||
| endif() | ||
|
|
||
| set(ENV{PKG_CONFIG} "${CURRENT_HOST_INSTALLED_DIR}/tools/pkgconf/pkgconf${VCPKG_HOST_EXECUTABLE_SUFFIX}") | ||
| get_filename_component(PKGCONFIG_PATH "${PKGCONFIG}" DIRECTORY) | ||
| vcpkg_add_to_path("${PKGCONFIG_PATH}") | ||
|
|
||
| set(buildtypes "") | ||
| if(NOT VCPKG_BUILD_TYPE OR "${VCPKG_BUILD_TYPE}" STREQUAL "debug") | ||
| list(APPEND buildtypes "DEBUG") # Using uppercase to also access the detected cmake variables with it | ||
| set(path_suffix_DEBUG "debug/") | ||
| set(short_name_DEBUG "dbg") | ||
| set(qmake_config_DEBUG CONFIG+=debug CONFIG-=release) | ||
| endif() | ||
| if(NOT VCPKG_BUILD_TYPE OR "${VCPKG_BUILD_TYPE}" STREQUAL "release") | ||
| list(APPEND buildtypes "RELEASE") | ||
| set(path_suffix_RELEASE "") | ||
| set(short_name_RELEASE "rel") | ||
| set(qmake_config_RELEASE CONFIG-=debug CONFIG+=release) | ||
| endif() | ||
|
|
||
| function(qmake_append_program var qmake_var value) | ||
| get_filename_component(prog "${value}" NAME) | ||
| # QMake assumes everything is on PATH? | ||
| vcpkg_list(APPEND ${var} "${qmake_var}=${prog}") | ||
| find_program(${qmake_var} NAMES "${prog}") | ||
| cmake_path(COMPARE "${${qmake_var}}" EQUAL "${value}" correct_prog_on_path) | ||
| if(NOT correct_prog_on_path AND NOT "${value}" MATCHES "|:") | ||
| message(FATAL_ERROR "Detect path mismatch for '${qmake_var}'. '${value}' is not the same as '${${qmake_var}}'. Please correct your PATH!") | ||
| endif() | ||
| unset(${qmake_var}) | ||
| unset(${qmake_var} CACHE) | ||
| set(${var} "${${var}}" PARENT_SCOPE) # Is this correct? Or is there a vcpkg_list command for that? | ||
| endfunction() | ||
| # Setup Build tools | ||
| if(NOT VCPKG_QMAKE_COMMAND) # For users using outside Qt6 | ||
| set(VCPKG_QMAKE_COMMAND "${CURRENT_HOST_INSTALLED_DIR}/tools/Qt6/bin/qmake${VCPKG_HOST_EXECUTABLE_SUFFIX}") | ||
| endif() | ||
|
|
||
| set(qmake_build_tools "") | ||
| qmake_append_program(qmake_build_tools "QMAKE_CC" "${VCPKG_DETECTED_CMAKE_C_COMPILER}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_CXX" "${VCPKG_DETECTED_CMAKE_CXX_COMPILER}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_AR" "${VCPKG_DETECTED_CMAKE_AR}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_RANLIB" "${VCPKG_DETECTED_CMAKE_RANLIB}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_STRIP" "${VCPKG_DETECTED_CMAKE_STRIP}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_NM" "${VCPKG_DETECTED_CMAKE_NM}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_RC" "${VCPKG_DETECTED_CMAKE_RC_COMPILER}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_MT" "${VCPKG_DETECTED_CMAKE_MT}") | ||
|
|
||
| # QMAKE_OBJCOPY ? | ||
| if(VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW) | ||
| qmake_append_program(qmake_build_tools "LINKER" "${VCPKG_DETECTED_CMAKE_LINKER}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_LINK" "${VCPKG_DETECTED_CMAKE_LINKER}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_LINK_C" "${VCPKG_DETECTED_CMAKE_LINKER}") | ||
| else() | ||
| qmake_append_program(qmake_build_tools "QMAKE_LINK" "${VCPKG_DETECTED_CMAKE_CXX_COMPILER}") | ||
| qmake_append_program(qmake_build_tools "QMAKE_LINK_C" "${VCPKG_DETECTED_CMAKE_C_COMPILER}") | ||
| endif() | ||
|
|
||
| foreach(buildtype IN LISTS buildtypes) | ||
| set(short "${short_name_${buildtype}}") | ||
| string(TOLOWER "${buildtype}" lowerbuildtype) | ||
| set(prefix "${CURRENT_INSTALLED_DIR}${path_suffix_${buildtype}}") | ||
| set(prefix_package "${CURRENT_PACKAGES_DIR}${path_suffix_${buildtype}}") | ||
| set(config_triplet "${TARGET_TRIPLET}-${short}") | ||
| # Cleanup build directories | ||
| file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/${config_triplet}") | ||
|
|
||
| # Setup qt.conf | ||
| if(NOT VCPKG_QT_CONF_${buildtype}) | ||
| set(VCPKG_QT_CONF_${buildtype} "${CURRENT_INSTALLED_DIR}/tools/Qt6/qt_${lowerbuildtype}.conf") | ||
| endif() | ||
| configure_file("${VCPKG_QT_CONF_${buildtype}}" "${CURRENT_BUILDTREES_DIR}/${config_triplet}/qt.conf") # Needs probably more TODO for cross builds | ||
|
|
||
| vcpkg_backup_env_variables(VARS PKG_CONFIG_PATH) | ||
| vcpkg_host_path_list(PREPEND PKG_CONFIG_PATH "${prefix}/lib/pkgconfig" "${prefix}/share/pkgconfig") | ||
|
|
||
| set(qmake_comp_flags "") | ||
| # Note sure about these. VCPKG_QMAKE_OPTIONS offers a way to opt out of these. (earlier values being overwritten by later values; = set +=append *=append unique -=remove) | ||
| vcpkg_list(APPEND qmake_comp_flags "QMAKE_LIBS+=${VCPKG_DETECTED_CMAKE_C_STANDARD_LIBRARIES} ${VCPKG_DETECTED_CMAKE_CXX_STANDARD_LIBRARIES}" | ||
| "QMAKE_RC+=${VCPKG_DETECTED_CMAKE_RC_FLAGS_${buildtype}}" | ||
| "QMAKE_CFLAGS_${buildtype}*=${VCPKG_DETECTED_CMAKE_C_FLAGS_${buildtype}}" | ||
| "QMAKE_CXXFLAGS_${buildtype}*=${VCPKG_DETECTED_CMAKE_CXX_FLAGS_${buildtype}}" | ||
| "QMAKE_LFLAGS*=${VCPKG_DETECTED_CMAKE_STATIC_LINKER_FLAGS_${buildtype}}" | ||
| "QMAKE_LFLAGS_DLL*=${VCPKG_DETECTED_CMAKE_SHARED_LINKER_FLAGS_${buildtype}}" | ||
| "QMAKE_LFLAGS_EXE*=${VCPKG_DETECTED_CMAKE_EXE_LINKER_FLAGS_${buildtype}}" | ||
| ) | ||
|
|
||
| message(STATUS "Configuring ${config_triplet}") | ||
| file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${config_triplet}") | ||
| if(DEFINED arg_OPTIONS OR DEFINED arg_OPTIONS_${buildtype}) | ||
| set(options -- ${arg_OPTIONS} ${arg_OPTIONS_${buildtype}}) | ||
| endif() | ||
| # Options might need to go into a response file? I am a bit concerned about cmd line length. | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${VCPKG_QMAKE_COMMAND} ${qmake_config_${buildtype}} | ||
| ${arg_QMAKE_OPTIONS} ${arg_QMAKE_OPTIONS_DEBUG} | ||
| ${VCPKG_QMAKE_OPTIONS} ${VCPKG_QMAKE_OPTIONS_${buildtype}} # Advanced users need a way to inject QMAKE variables via the triplet. | ||
| ${qmake_build_tools} ${qmake_comp_flags} | ||
| "${arg_SOURCE_PATH}" | ||
| -qtconf "${CURRENT_BUILDTREES_DIR}/${config_triplet}/qt.conf" | ||
| ${options} | ||
| WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${config_triplet} | ||
| LOGNAME config-${config_triplet} | ||
| ) | ||
| message(STATUS "Configuring ${config_triplet} done") | ||
|
|
||
| vcpkg_restore_env_variables(VARS PKG_CONFIG_PATH) | ||
| if(EXISTS "${CURRENT_BUILDTREES_DIR}/${config_triplet}/config.log") | ||
| file(REMOVE "${CURRENT_BUILDTREES_DIR}/internal-config-${config_triplet}.log") | ||
| file(RENAME "${CURRENT_BUILDTREES_DIR}/${config_triplet}/config.log" "${CURRENT_BUILDTREES_DIR}/internal-config-${config_triplet}.log") | ||
| endif() | ||
| endforeach() | ||
| endfunction() | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "versions": [ | ||
| { | ||
| "git-tree": "1b1cd1cfcca489897822287c15af473fa4380cb1", | ||
| "version-date": "2021-10-23", | ||
| "port-version": 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.
We may want to just provide a file that says "This helper port is part of vcpkg and is under the vcpkg license terms" instead of a duplicate license.
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.
this is just copied over from vcpkg-cmake. I don't even now why you require this for the vcpkg scripts. (just touch the file vcpkg-tool wants to see)