aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle12
1 files changed, 9 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index dae673ea..88e06736 100644
--- a/build.gradle
+++ b/build.gradle
@@ -136,11 +136,17 @@ project('native') {
if (os != Os.WINDOWS) {
commandLine 'gcc'
args "-I${jre}/../include"
- args "-I${jre}/../include/linux"
args '-shared'
args 'natives.c'
- args '-o'
- args 'build/libnatives.so'
+ if (os == Os.UNIX) {
+ args "-I${jre}/../include/linux"
+ args '-o'
+ args 'build/libnatives.so'
+ } else if (os == Os.MAC) {
+ args "-I${jre}/../include/darwin"
+ args '-o'
+ args 'build/libnatives.dylib'
+ }
} else {
commandLine 'cmd', '/c', 'compile.cmd'
environment ARCH: arch == Arch.X86 ? 'x86' : 'x64'