[Android] Unified xenia-app with windowed apps and build prerequisites
This commit is contained in:
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
|
||||
|
||||
Reference in New Issue
Block a user