diff --git a/CMakeLists.txt b/CMakeLists.txt index ae175c5..60cb468 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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" diff --git a/resources/build.ps1 b/resources/build.ps1 index efddf61..e0e9a67 100644 --- a/resources/build.ps1 +++ b/resources/build.ps1 @@ -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