mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-04 14:17:24 +00:00
[Android] Unified xenia-app with windowed apps and build prerequisites
This commit is contained in:
parent
b41bb35a20
commit
037310f8dc
18 changed files with 176 additions and 43 deletions
11
premake5.lua
11
premake5.lua
|
|
@ -141,6 +141,12 @@ filter("platforms:Android-*")
|
|||
systemversion("24")
|
||||
cppstl("c++")
|
||||
staticruntime("On")
|
||||
-- Hidden visibility is needed to prevent dynamic relocations in FFmpeg
|
||||
-- AArch64 Neon libavcodec assembly with PIC (accesses extern lookup tables
|
||||
-- using `adrp` and `add`, without the Global Object Table, expecting that all
|
||||
-- FFmpeg symbols that aren't a part of the FFmpeg API are hidden by FFmpeg's
|
||||
-- original build system) by resolving those relocations at link time instead.
|
||||
visibility("Hidden")
|
||||
links({
|
||||
"android",
|
||||
"dl",
|
||||
|
|
@ -272,6 +278,7 @@ workspace("xenia")
|
|||
end
|
||||
|
||||
include("src/xenia")
|
||||
include("src/xenia/app")
|
||||
include("src/xenia/app/discord")
|
||||
include("src/xenia/apu")
|
||||
include("src/xenia/apu/nop")
|
||||
|
|
@ -293,10 +300,6 @@ workspace("xenia")
|
|||
include("src/xenia/apu/sdl")
|
||||
include("src/xenia/helper/sdl")
|
||||
include("src/xenia/hid/sdl")
|
||||
|
||||
-- TODO(Triang3l): src/xenia/app has a dependency on xenia-helper-sdl, bring
|
||||
-- it back later.
|
||||
include("src/xenia/app")
|
||||
end
|
||||
|
||||
if os.istarget("windows") then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue