2021-11-06 07:55:23 +08:00
|
|
|
function(z_run_jom_build invoke_command targets log_prefix log_suffix)
|
|
|
|
message(STATUS "Package ${log_prefix}-${TARGET_TRIPLET}-${log_suffix}")
|
|
|
|
vcpkg_execute_build_process(
|
|
|
|
COMMAND "${invoke_command}" -j ${VCPKG_CONCURRENCY} ${targets}
|
|
|
|
NO_PARALLEL_COMMAND "${invoke_command}" -j 1 ${targets}
|
|
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-${log_suffix}"
|
|
|
|
LOGNAME "package-${log_prefix}-${TARGET_TRIPLET}-${log_suffix}"
|
|
|
|
)
|
|
|
|
endfunction()
|
|
|
|
|
2017-01-06 06:38:01 +08:00
|
|
|
function(vcpkg_build_qmake)
|
2020-10-27 10:30:27 +08:00
|
|
|
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
2021-11-06 07:55:23 +08:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 0 arg
|
|
|
|
"SKIP_MAKEFILES"
|
|
|
|
"BUILD_LOGNAME"
|
|
|
|
"TARGETS;RELEASE_TARGETS;DEBUG_TARGETS"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Make sure that the linker finds the libraries used
|
|
|
|
vcpkg_backup_env_variables(VARS PATH LD_LIBRARY_PATH CL _CL_)
|
|
|
|
|
|
|
|
# This fixes issues on machines with default codepages that are not ASCII compatible, such as some CJK encodings
|
|
|
|
set(ENV{_CL_} "/utf-8")
|
2019-03-14 21:33:48 +08:00
|
|
|
|
|
|
|
if(CMAKE_HOST_WIN32)
|
2020-11-24 07:26:01 +08:00
|
|
|
if (VCPKG_QMAKE_USE_NMAKE)
|
|
|
|
find_program(NMAKE nmake)
|
2021-11-06 07:55:23 +08:00
|
|
|
set(invoke_command "${NMAKE}")
|
|
|
|
get_filename_component(nmake_exe_path "${NMAKE}" DIRECTORY)
|
|
|
|
vcpkg_host_path_list(APPEND ENV{PATH} "${nmake_exe_path}")
|
2020-11-24 07:26:01 +08:00
|
|
|
set(ENV{CL} "$ENV{CL} /MP${VCPKG_CONCURRENCY}")
|
|
|
|
else()
|
|
|
|
vcpkg_find_acquire_program(JOM)
|
2021-11-06 07:55:23 +08:00
|
|
|
set(invoke_command "${JOM}")
|
2020-11-24 07:26:01 +08:00
|
|
|
endif()
|
2019-03-14 21:33:48 +08:00
|
|
|
else()
|
|
|
|
find_program(MAKE make)
|
2021-11-06 07:55:23 +08:00
|
|
|
set(invoke_command "${MAKE}")
|
2019-03-14 21:33:48 +08:00
|
|
|
endif()
|
2017-01-06 06:38:01 +08:00
|
|
|
|
2021-11-06 07:55:23 +08:00
|
|
|
if(NOT DEFINED arg_BUILD_LOGNAME)
|
|
|
|
set(arg_BUILD_LOGNAME build)
|
2018-01-18 23:36:07 +08:00
|
|
|
endif()
|
|
|
|
|
2021-11-06 07:55:23 +08:00
|
|
|
set(short_name_debug "dbg")
|
|
|
|
set(path_suffix_debug "/debug")
|
|
|
|
set(targets_debug "${arg_DEBUG_TARGETS}")
|
2018-01-18 23:36:07 +08:00
|
|
|
|
2021-11-06 07:55:23 +08:00
|
|
|
set(short_name_release "rel")
|
|
|
|
set(path_suffix_release "")
|
|
|
|
set(targets_release "${arg_RELEASE_TARGETS}")
|
2020-05-05 06:37:57 +08:00
|
|
|
|
2021-11-26 17:16:15 +08:00
|
|
|
if(NOT DEFINED VCPKG_BUILD_TYPE)
|
|
|
|
set(items debug release)
|
|
|
|
else()
|
|
|
|
set(items release)
|
|
|
|
endif()
|
|
|
|
foreach(build_type IN ITEMS ${items})
|
2021-11-06 07:55:23 +08:00
|
|
|
set(current_installed_prefix "${CURRENT_INSTALLED_DIR}${path_suffix_${build_type}}")
|
2020-12-22 03:17:30 +08:00
|
|
|
|
2021-11-06 07:55:23 +08:00
|
|
|
vcpkg_add_to_path(PREPEND "${current_installed_prefix}/lib" "${current_installed_prefix}/bin")
|
2020-12-22 03:17:30 +08:00
|
|
|
|
|
|
|
# We set LD_LIBRARY_PATH ENV variable to allow executing Qt tools (rcc,...) even with dynamic linking
|
|
|
|
if(CMAKE_HOST_UNIX)
|
2021-11-06 07:55:23 +08:00
|
|
|
set(ENV{LD_LIBRARY_PATH} "")
|
|
|
|
vcpkg_host_path_list(APPEND ENV{LD_LIBRARY_PATH} "${current_installed_prefix}/lib" "${current_installed_prefix}/lib/manual-link")
|
2019-09-13 01:07:22 +08:00
|
|
|
endif()
|
2020-12-22 03:17:30 +08:00
|
|
|
|
2021-11-06 07:55:23 +08:00
|
|
|
vcpkg_list(SET targets ${targets_${build_type}} ${arg_TARGETS})
|
|
|
|
if(NOT arg_SKIP_MAKEFILES)
|
|
|
|
z_run_jom_build("${invoke_command}" qmake_all makefiles "${short_name_${build_type}}")
|
2020-12-22 03:17:30 +08:00
|
|
|
endif()
|
2021-11-06 07:55:23 +08:00
|
|
|
z_run_jom_build("${invoke_command}" "${targets}" "${arg_BUILD_LOGNAME}" "${short_name_${build_type}}")
|
|
|
|
|
|
|
|
vcpkg_restore_env_variables(VARS PATH LD_LIBRARY_PATH)
|
2019-09-13 01:07:22 +08:00
|
|
|
endforeach()
|
2020-05-05 06:37:57 +08:00
|
|
|
|
2021-11-06 07:55:23 +08:00
|
|
|
vcpkg_restore_env_variables(VARS CL _CL_)
|
2017-01-06 06:38:01 +08:00
|
|
|
endfunction()
|