[Premake, 3PP] Formatting/cleanup
This commit is contained in:
@@ -9,8 +9,10 @@ project("xenia-base")
|
||||
"fmt",
|
||||
})
|
||||
local_platform_files()
|
||||
removefiles({"console_app_main_*.cc"})
|
||||
removefiles({"main_init_*.cc"})
|
||||
removefiles({
|
||||
"console_app_main_*.cc",
|
||||
"main_init_*.cc",
|
||||
})
|
||||
files({
|
||||
"debug_visualizers.natvis",
|
||||
})
|
||||
|
||||
@@ -27,7 +27,9 @@ project("xenia-cpu-ppc-tests")
|
||||
"*.s",
|
||||
})
|
||||
filter("files:*.s")
|
||||
flags({"ExcludeFromBuild"})
|
||||
flags({
|
||||
"ExcludeFromBuild",
|
||||
})
|
||||
filter("architecture:x86_64")
|
||||
links({
|
||||
"xenia-cpu-backend-x64",
|
||||
@@ -40,7 +42,9 @@ project("xenia-cpu-ppc-tests")
|
||||
})
|
||||
|
||||
-- xenia-base needs this
|
||||
links({"xenia-ui"})
|
||||
links({
|
||||
"xenia-ui",
|
||||
})
|
||||
|
||||
if ARCH == "ppc64" or ARCH == "powerpc64" then
|
||||
|
||||
@@ -61,7 +65,9 @@ project("xenia-cpu-ppc-nativetests")
|
||||
"seq_*.s",
|
||||
})
|
||||
filter("files:instr_*.s", "files:seq_*.s")
|
||||
flags({"ExcludeFromBuild"})
|
||||
flags({
|
||||
"ExcludeFromBuild",
|
||||
})
|
||||
filter({})
|
||||
buildoptions({
|
||||
"-Wa,-mregnames", -- Tell GAS to accept register names.
|
||||
@@ -71,4 +77,4 @@ project("xenia-cpu-ppc-nativetests")
|
||||
"ppc_testing_native_thunks.s",
|
||||
})
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,4 +11,6 @@ project("xenia-hid")
|
||||
"xenia-hid-skylander",
|
||||
})
|
||||
local_platform_files()
|
||||
removefiles({"*_demo.cc"})
|
||||
removefiles({
|
||||
"*_demo.cc",
|
||||
})
|
||||
|
||||
@@ -10,4 +10,7 @@ project("xenia-core")
|
||||
"fmt",
|
||||
"xenia-base",
|
||||
})
|
||||
files({"*.h", "*.cc"})
|
||||
files({
|
||||
"*.h",
|
||||
"*.cc",
|
||||
})
|
||||
|
||||
@@ -10,8 +10,10 @@ project("xenia-ui")
|
||||
"xenia-base",
|
||||
})
|
||||
local_platform_files()
|
||||
removefiles({"*_demo.cc"})
|
||||
removefiles({"windowed_app_main_*.cc"})
|
||||
removefiles({
|
||||
"*_demo.cc",
|
||||
"windowed_app_main_*.cc",
|
||||
})
|
||||
filter("platforms:Android-*")
|
||||
-- Exports JNI functions.
|
||||
wholelib("On")
|
||||
|
||||
@@ -13,7 +13,9 @@ project("xenia-vfs")
|
||||
})
|
||||
|
||||
recursive_platform_files()
|
||||
removefiles({"vfs_dump.cc"})
|
||||
removefiles({
|
||||
"vfs_dump.cc",
|
||||
})
|
||||
|
||||
if enableMiscSubprojects then
|
||||
project("xenia-vfs-dump")
|
||||
|
||||
Reference in New Issue
Block a user