diff options
Diffstat (limited to 'build/tools/make_windows_sdk.sh')
-rwxr-xr-x | build/tools/make_windows_sdk.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/tools/make_windows_sdk.sh b/build/tools/make_windows_sdk.sh index 001ab8cc8..97c7bc77e 100755 --- a/build/tools/make_windows_sdk.sh +++ b/build/tools/make_windows_sdk.sh @@ -99,7 +99,7 @@ function build() { fastboot \ hprof-conv \ mksdcard \ - sqlite3 \ + sdklauncher sqlite3 \ zipalign \ || die "Build failed" } @@ -153,6 +153,9 @@ function package() { mkdir -pv "$LIB"/x86_64 cp -v prebuilt/windows-x86_64/swt/swt.jar "$LIB"/x86_64/ + # Move the SDK Setup (aka sdklauncher) to the root of the SDK (it was copied in tools above) + mv "$TOOLS/sdklauncher.exe" "$TEMP_SDK_DIR/SDK Setup.exe" + # If you want the emulator NOTICE in the tools dir, uncomment the following line: # cp -v external/qemu/NOTICE "$TOOLS"/emulator_NOTICE.txt |