mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-02 15:26:00 +08:00
qt 6.5.1 original
This commit is contained in:
34
libexec/qt-internal-configure-tests.bat.in
Normal file
34
libexec/qt-internal-configure-tests.bat.in
Normal file
@ -0,0 +1,34 @@
|
||||
@echo off
|
||||
setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
|
||||
set script_dir_path=%~dp0
|
||||
set script_dir_path=%script_dir_path:~0,-1%
|
||||
|
||||
rem Extracts the source path, make it native, and put it
|
||||
rem back again. This is a workaround on Windows LLVM/MINGW
|
||||
rem to help CMake find source files when doing Unity Build.
|
||||
set args=%*
|
||||
set source_dir_path=
|
||||
set native_source_dir_path=
|
||||
for %%i in (%args%) do (
|
||||
if "%%i"=="-S" (
|
||||
set found=true
|
||||
) else if defined found (
|
||||
set source_dir_path=%%i
|
||||
set native_source_dir_path=%%~dpnxi
|
||||
set found=
|
||||
)
|
||||
)
|
||||
|
||||
if NOT "%native_source_dir_path%" == "" (
|
||||
set args=!args:%source_dir_path%=%native_source_dir_path%!
|
||||
)
|
||||
|
||||
set cmake_scripts_dir=%script_dir_path%
|
||||
|
||||
set relative_bin_dir=@relative_path_from_libexec_dir_to_bin_dir@
|
||||
if NOT "%relative_bin_dir%" == "" (
|
||||
set relative_bin_dir="%relative_bin_dir%"\
|
||||
)
|
||||
|
||||
call "%script_dir_path%"\%relative_bin_dir%"qt-cmake.bat" ^
|
||||
@script_passed_args@ %args%
|
5
libexec/qt-internal-configure-tests.in
Normal file
5
libexec/qt-internal-configure-tests.in
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
script_dir_path=`dirname $0`
|
||||
script_dir_path=`(cd "$script_dir_path"; /bin/pwd)`
|
||||
|
||||
"$script_dir_path/@relative_path_from_libexec_dir_to_bin_dir@/qt-cmake" @script_passed_args@ "$@"
|
3
libexec/qt-internal-ninja.bat.in
Normal file
3
libexec/qt-internal-ninja.bat.in
Normal file
@ -0,0 +1,3 @@
|
||||
:: Make sure we don't echo, because CMake uses the output to parse out ninja's version
|
||||
@echo off
|
||||
@original_ninja@ @ninja_arguments@ %*
|
2
libexec/qt-internal-ninja.in
Normal file
2
libexec/qt-internal-ninja.in
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
@original_ninja@ @ninja_arguments@ "$@"
|
1
libexec/qt-internal-strip.bat.in
Normal file
1
libexec/qt-internal-strip.bat.in
Normal file
@ -0,0 +1 @@
|
||||
@original_strip@ @strip_arguments@ %*
|
4
libexec/qt-internal-strip.in
Normal file
4
libexec/qt-internal-strip.in
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
# echo the invoked command
|
||||
set -x
|
||||
@original_strip@ @strip_arguments@ "$@"
|
1266
libexec/syncqt.pl
Normal file
1266
libexec/syncqt.pl
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user