diff options
-rw-r--r-- | recipes-core/images/core-image-mingw-sdktest.bb | 1 | ||||
-rw-r--r-- | recipes-devtools/ninja/ninja_%.bbappend | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/recipes-core/images/core-image-mingw-sdktest.bb b/recipes-core/images/core-image-mingw-sdktest.bb index 6215aef..9060c3d 100644 --- a/recipes-core/images/core-image-mingw-sdktest.bb +++ b/recipes-core/images/core-image-mingw-sdktest.bb | |||
@@ -10,6 +10,7 @@ TOOLCHAIN_HOST_TASK += "\ | |||
10 | nativesdk-dbus \ | 10 | nativesdk-dbus \ |
11 | nativesdk-dtc \ | 11 | nativesdk-dtc \ |
12 | nativesdk-libarchive \ | 12 | nativesdk-libarchive \ |
13 | nativesdk-ninja \ | ||
13 | nativesdk-swig \ | 14 | nativesdk-swig \ |
14 | nativesdk-wayland \ | 15 | nativesdk-wayland \ |
15 | " | 16 | " |
diff --git a/recipes-devtools/ninja/ninja_%.bbappend b/recipes-devtools/ninja/ninja_%.bbappend new file mode 100644 index 0000000..e7ddb4d --- /dev/null +++ b/recipes-devtools/ninja/ninja_%.bbappend | |||
@@ -0,0 +1,8 @@ | |||
1 | do_compile_mingw32() { | ||
2 | python3 ./configure.py --platform mingw | ||
3 | ninja | ||
4 | } | ||
5 | |||
6 | do_install_mingw32() { | ||
7 | install -D -m 0755 ${S}/ninja.exe ${D}${bindir}/ninja.exe | ||
8 | } | ||