From dbba94288b9aec279d2d8367705d11f415f1cf56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= Date: Tue, 11 Apr 2017 19:52:17 +0200 Subject: [PATCH] Enable generic build for i386 and arm --- org.DolphinEmu.dolphin-emu.json | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/org.DolphinEmu.dolphin-emu.json b/org.DolphinEmu.dolphin-emu.json index 137e48f..f4ef459 100644 --- a/org.DolphinEmu.dolphin-emu.json +++ b/org.DolphinEmu.dolphin-emu.json @@ -20,10 +20,28 @@ { "name": "dolphin-emu", "buildsystem": "cmake", - "config-opts": [ - "-DENABLE_SDL=ON", - "-DENABLE_EVDEV=OFF" - ], + "build-options": { + "config-opts": [ + "-DENABLE_SDL=ON", + "-DENABLE_EVDEV=OFF" + ], + "arch": { + "i386": { + "config-opts": [ + "-DENABLE_GENERIC=ON", + "-DENABLE_SDL=ON", + "-DENABLE_EVDEV=OFF" + ] + }, + "arm": { + "config-opts": [ + "-DENABLE_GENERIC=ON", + "-DENABLE_SDL=ON", + "-DENABLE_EVDEV=OFF" + ] + } + } + }, "post-install": [ "install -Dm644 appdata.xml /app/share/appdata/dolphin-emu.appdata.xml" ],