61debb00e5
Otherwise the entire build cache effectively invalidates the moment one script changes..
16 lines
341 B
Bash
Executable file
16 lines
341 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/meganz/mingw-std-threads.git"
|
|
SCRIPT_COMMIT="6c2061b7da41d6aa1b2162ff4383ec3ece864bc6"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET == win* ]] || return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
mkdir -p "$FFBUILD_PREFIX"/include
|
|
cp *.h "$FFBUILD_PREFIX"/include
|
|
}
|