diff options
author | 2016-06-29 17:31:40 +0000 | |
---|---|---|
committer | 2016-06-30 16:26:45 -0500 | |
commit | 2f3f53ed6173b30caedf1ae9e41dfcab91b90985 (patch) | |
tree | eb4f0bc0f17a9cddf897bf07c627f91523c51951 /scripts/toolchain.lua | |
parent | 245b8d4163e1718abb395ab2abf28a791131c7ae (diff) |
android build folders (nw)
Signed-off-by: Jeffrey Clark <h0tw1r3@users.noreply.github.com>
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 979b22f63b1..d19971d7544 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -772,9 +772,15 @@ function toolchain(_buildDir, _subDir) configuration { "openbsd", "x64", "Debug" } targetdir (_buildDir .. "openbsd" .. "/bin/x64/Debug") + configuration { "android-*", "Release" } + targetdir (_buildDir .. "android/bin/" .. _OPTIONS["PLATFORM"] .. "/Release") + objdir (_buildDir .. "android/obj/" .. _OPTIONS["PLATFORM"] .. "/Release") + + configuration { "android-*", "Debug" } + targetdir (_buildDir .. "android/bin/" .. _OPTIONS["PLATFORM"] .. "/Debug") + objdir (_buildDir .. "android/obj/" .. _OPTIONS["PLATFORM"] .. "/Debug") + configuration { "android-*" } - targetdir (_buildDir .. "android-" .. _OPTIONS["PLATFORM"] .. "/bin") - objdir (_buildDir .. "android-" .. _OPTIONS["PLATFORM"] .. "/obj") includedirs { MAME_DIR .. "3rdparty/bgfx/3rdparty/khronos", "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libcxx/include", |