-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
49 additions
and
28 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 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
LIBS=(libwinpthread-1.dll libsystre-0.dll libtre-5.dll libusb-1.0.dll libintl-8.dll | ||
libgcc_s_dw2-1.dll libiconv-2.dll libstdc++-6.dll) | ||
GTK_LIBS=(libgtk-3-0.dll libgdk-3-0.dll libharfbuzz-0.dll libfreetype-6.dll | ||
libepoxy-0.dll libcairo-gobject-2.dll libpng16-16.dll | ||
libgraphite2.dll libbz2-1.dll libcairo-2.dll libatk-1.0-0.dll | ||
libfontconfig-1.dll libgdk_pixbuf-2.0-0.dll libgio-2.0-0.dll | ||
libglib-2.0-0.dll libgmodule-2.0-0.dll libgobject-2.0-0.dll | ||
libpango-1.0-0.dll libpangocairo-1.0-0.dll libpangoft2-1.0-0.dll | ||
libpangowin32-1.0-0.dll libpixman-1-0.dll zlib1.dll libexpat-1.dll | ||
libffi-6.dll libfribidi-0.dll libpcre-1.dll libthai-0.dll libdatrie-1.dll | ||
) | ||
DRIVERS=(sc_by_cable sc_dongle) | ||
|
||
meson build-win32 | ||
ninja -C build-win32 || exit 1 | ||
|
||
mkdir -p release-win32 | ||
for d in default_profiles default_menus osd_styles ; do | ||
cp -vr $d release-win32/ | ||
done | ||
|
||
cp -v build-win32/src/daemon/scc-daemon.exe release-win32/ | ||
cp -v build-win32/src/osd/scc-osd-menu.exe release-win32/ | ||
cp -v build-win32/src/daemon/libvigemclient.dll release-win32/ | ||
|
||
mkdir -p release-win32/drivers/ | ||
for i in "${DRIVERS[@]}" ; do | ||
cp -v "build-win32/src/daemon/drivers/libscc_drv_$i.dll" release-win32/drivers/ | ||
done | ||
|
||
for i in "${LIBS[@]}" "${GTK_LIBS[@]}" ; do | ||
[ -e release-win32/$i ] || cp -v $(whereis "$i" | cut -d ":" -f 2) release-win32/ | ||
done |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 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