Merge pull request #2 from Barthalion/master

Enable generic build for i386 and arm
This commit is contained in:
Juraj Fiala 2017-04-11 20:04:40 +02:00 committed by GitHub
commit be49ab82a0

View file

@ -20,10 +20,28 @@
{ {
"name": "dolphin-emu", "name": "dolphin-emu",
"buildsystem": "cmake", "buildsystem": "cmake",
"build-options": {
"config-opts": [ "config-opts": [
"-DENABLE_SDL=ON", "-DENABLE_SDL=ON",
"-DENABLE_EVDEV=OFF" "-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"
], ],