修正构建文件编码。
Some checks failed
Windows CI / build (push) Failing after 32s
Build Applications / Build (push) Successful in 2m49s
Build Applications / PullDocker (push) Has been cancelled

This commit is contained in:
luocai 2024-11-14 15:08:24 +08:00
parent 881048a286
commit 404889a19c
2 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,6 @@ if(WIN32)
else()
set(MBEDTLS_ROOT ${Libraries_ROOT}/mbedtls-3.6.2_msvc2022_64bit_debug)
endif()
add_compile_options(/showIncludes-)
else()
execute_process(
COMMAND sh -c "echo $HOME"

View File

@ -38,6 +38,9 @@ function Build() {
-DQt6CoreTools_DIR="$qtHome\lib\cmake\Qt6CoreTools" `
-DQt6QmlTools_DIR="$qtHome\lib\cmake\Qt6QmlTools" `
-DLibraries_ROOT="$librariesPath"
$content = Get-Content -Path "build\CMakeFiles\rules.ninja" -Encoding Default
Set-Content -Path "build\CMakeFiles\rules.ninja" -Value $content -Encoding UTF8
}
cmake.exe --build $buildPath --target all