Enable generic build for i386 and arm

This commit is contained in:
Bartłomiej Piotrowski 2017-04-11 19:52:17 +02:00
parent ed3ffab58f
commit dbba94288b

View file

@ -20,10 +20,28 @@
{ {
"name": "dolphin-emu", "name": "dolphin-emu",
"buildsystem": "cmake", "buildsystem": "cmake",
"config-opts": [ "build-options": {
"-DENABLE_SDL=ON", "config-opts": [
"-DENABLE_EVDEV=OFF" "-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": [ "post-install": [
"install -Dm644 appdata.xml /app/share/appdata/dolphin-emu.appdata.xml" "install -Dm644 appdata.xml /app/share/appdata/dolphin-emu.appdata.xml"
], ],