Change from /usr/bin/cmake to cmake

master 1.68
sh123 2023-12-11 17:39:14 +02:00
rodzic aa1087cd9e
commit b19dcb8ca3
2 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -74,12 +74,12 @@ task compileCodec2 {
doLast {
exec {
workingDir "$projectDir/build/codec2_build_linux"
commandLine "/usr/bin/cmake", "$projectDir/src/codec2"
commandLine "cmake", "$projectDir/src/codec2"
}
exec {
workingDir "$projectDir/build/codec2_build_linux"
commandLine "/usr/bin/make"
commandLine "make"
}
for(String abi : rootProject.ext.ABI_FILTERS.split(";")) {
@ -96,7 +96,7 @@ task compileCodec2 {
exec {
workingDir "$projectDir/build/codec2_build_android_" + abi
commandLine "/usr/bin/cmake", "--build", "."
commandLine "cmake", "--build", "."
}
copy {

Wyświetl plik

@ -74,12 +74,12 @@ task compileOpus {
doLast {
exec {
workingDir "$projectDir/build/opus_build_linux"
commandLine "/usr/bin/cmake", "$projectDir/src/opus"
commandLine "cmake", "$projectDir/src/opus"
}
exec {
workingDir "$projectDir/build/opus_build_linux"
commandLine "/usr/bin/make"
commandLine "make"
}
for(String abi : rootProject.ext.ABI_FILTERS.split(";")) {
@ -95,7 +95,7 @@ task compileOpus {
exec {
workingDir "$projectDir/build/opus_build_android_" + abi
commandLine "/usr/bin/cmake", "--build", "."
commandLine "cmake", "--build", "."
}
copy {