File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 76
76
-S ./ \
77
77
-B ./build/arm64-v8a
78
78
cmake --build ./build/arm64-v8a --config Release
79
+ cmake --install ./build/arm64-v8a --config Release --prefix install/arm64-v8a
79
80
80
81
- name : Build for x86_64
81
82
run : |
93
94
-S ./ \
94
95
-B ./build/x86_64
95
96
cmake --build ./build/x86_64 --config Release
97
+ cmake --install ./build/x86_64 --config Release --prefix install/x86_64
96
98
97
99
- name : Build SDL_image for arm64-v8a
98
100
run : |
@@ -104,8 +106,7 @@ jobs:
104
106
-DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang \
105
107
-DCMAKE_ANDROID_STL_TYPE=c++_shared \
106
108
-DCMAKE_ANDROID_API=21 \
107
- -DSDL3_INCLUDE_DIR=./SDL/include \
108
- -DSDL3_LIBRARY=./SDL/build/arm64-v8a/libSDL3.so \
109
+ -DCMAKE_PREFIX_PATH="./SDL/install/arm64-v8a" \
109
110
-S ./ \
110
111
-B ./build/arm64-v8a
111
112
cmake --build ./build/arm64-v8a --config Release
@@ -120,8 +121,7 @@ jobs:
120
121
-DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang \
121
122
-DCMAKE_ANDROID_STL_TYPE=c++_shared \
122
123
-DCMAKE_ANDROID_API=21 \
123
- -DSDL3_INCLUDE_DIR=./SDL/include \
124
- -DSDL3_LIBRARY=./SDL/build/x86_64/libSDL3.so \
124
+ -DCMAKE_PREFIX_PATH="./SDL/install/x86_64" \
125
125
-S ./ \
126
126
-B ./build/x86_64
127
127
cmake --build ./build/x86_64 --config Release
You can’t perform that action at this time.
0 commit comments