-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cmake android when outside of hello imgui
- Loading branch information
Showing
8 changed files
with
25 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Assert we have one parameter and set source_dir to it | ||
if [ $# -ne 1 ]; then | ||
echo "Usage: $0 <source_dir>" | ||
exit 1 | ||
fi | ||
export source_dir=$1 | ||
|
||
THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | ||
export source_dir=$THIS_DIR/../.. | ||
|
||
export android_abi=armeabi-v7a | ||
$THIS_DIR/_impl_cmake_android.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Assert we have one parameter and set source_dir to it | ||
if [ $# -ne 1 ]; then | ||
echo "Usage: $0 <source_dir>" | ||
exit 1 | ||
fi | ||
export source_dir=$1 | ||
|
||
THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | ||
export source_dir=$THIS_DIR/../.. | ||
|
||
export android_abi=arm64-v8a | ||
$THIS_DIR/_impl_cmake_android.sh |