mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
Add gflags to projects that need it only
This commit is contained in:
parent
b7203c2989
commit
f2b2a22687
23 changed files with 45 additions and 11 deletions
17
premake5.lua
17
premake5.lua
|
|
@ -8,7 +8,6 @@ includedirs({
|
|||
".",
|
||||
"src",
|
||||
"third_party",
|
||||
"build_tools/third_party/gflags/src",
|
||||
})
|
||||
|
||||
defines({
|
||||
|
|
@ -146,6 +145,15 @@ solution("xenia")
|
|||
end
|
||||
configurations({"Checked", "Debug", "Release"})
|
||||
|
||||
-- Include third party files first so they don't have to deal with gflags.
|
||||
include("third_party/capstone.lua")
|
||||
include("third_party/elemental-forms")
|
||||
include("third_party/glew.lua")
|
||||
include("third_party/imgui.lua")
|
||||
include("third_party/libav.lua")
|
||||
include("third_party/xxhash.lua")
|
||||
include("build_tools/third_party/gflags.lua")
|
||||
|
||||
include("src/xenia")
|
||||
include("src/xenia/app")
|
||||
include("src/xenia/apu")
|
||||
|
|
@ -169,10 +177,3 @@ solution("xenia")
|
|||
include("src/xenia/hid/winkey")
|
||||
include("src/xenia/hid/xinput")
|
||||
end
|
||||
|
||||
include("third_party/capstone.lua")
|
||||
include("third_party/elemental-forms")
|
||||
include("third_party/glew.lua")
|
||||
include("third_party/imgui.lua")
|
||||
include("third_party/xxhash.lua")
|
||||
include("build_tools/third_party/gflags.lua")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue