You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
$(android_ndk_cmake) -DBUILD_PIC=ON || return 1
|
|
|
|
make -C "$(get_cmake_build_directory)" || return 1
|
|
|
|
make -C "$(get_cmake_build_directory)" install || return 1
|
|
|
|
# CREATE PACKAGE CONFIG MANUALLY
|
|
create_cpufeatures_package_config "0.7.0" || return 1
|
|
|