Skip to content

Commit

Permalink
Remove stray colon
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 authored Mar 20, 2024
1 parent 377c34b commit 7660656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-project/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = async options => {
if (process.env["LCNTP_TARGET_PLATFORM"] == "android" && !options.forceHostBuild) {
cmakeArgs.push(`-DANDROID_PLATFORM=${process.env["ANDROID_PLATFORM"]}`);
cmakeArgs.push(`-DANDROID_ABI=${process.env["ANDROID_ABI"]}`);
cmakeArgs.push(`-DCMAKE_FIND_ROOT_PATH:=${process.env["Qt6_DIR"]};${process.env["RUNNER_WORKSPACE"]}/cmake-install/${process.env["ANDROID_ABI"]}`);
cmakeArgs.push(`-DCMAKE_FIND_ROOT_PATH=${process.env["Qt6_DIR"]};${process.env["RUNNER_WORKSPACE"]}/cmake-install/${process.env["ANDROID_ABI"]}`);
cmakeArgs.push(`-DCMAKE_INSTALL_PREFIX=${process.env["RUNNER_WORKSPACE"]}/cmake-install/${process.env["ANDROID_ABI"]}`);
cmakeArgs.push(`-DCNTP_TOOL_PATH=${process.env["RUNNER_WORKSPACE"]}/cmake-install/${options.arch}`);
prefixPath = `${process.env["RUNNER_WORKSPACE"]}/cmake-install/${process.env["ANDROID_ABI"]}`
Expand Down

0 comments on commit 7660656

Please sign in to comment.