diff options
Diffstat (limited to 'build-aux/build-windows.sh')
-rwxr-xr-x | build-aux/build-windows.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/build-windows.sh b/build-aux/build-windows.sh index b00fbe6..7e24cb6 100755 --- a/build-aux/build-windows.sh +++ b/build-aux/build-windows.sh @@ -4,12 +4,12 @@ set -ex DESTDIR="${PN}-${TARGET}-${PV}" -${MAKE_CMD:-make} blogc.exe +${MAKE_CMD:-make} blogc.exe blogc-runserver.exe rm -rf "${DESTDIR}" mkdir -p "${DESTDIR}" -cp .libs/blogc.exe "${DESTDIR}/" +cp .libs/blogc.exe .libs/blogc-runserver.exe "${DESTDIR}/" cp ../LICENSE "${DESTDIR}/" cp ../README.md "${DESTDIR}/" |