|
|
@ -1,46 +1,97 @@ |
|
|
|
apply plugin: 'cpp' |
|
|
|
apply plugin: 'cpp' |
|
|
|
|
|
|
|
|
|
|
|
String bulletSrcPath = bulletFolder + '/src' |
|
|
|
import java.nio.file.Paths |
|
|
|
|
|
|
|
|
|
|
|
if (!hasProperty('mainClass')) { |
|
|
|
String bulletSrcPath = bulletFolder + '/src' |
|
|
|
ext.mainClass = '' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
dependencies { |
|
|
|
compile project(':jme3-bullet') |
|
|
|
compile project(':jme3-bullet') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Defines created C++ libraries |
|
|
|
model { |
|
|
|
libraries { |
|
|
|
components { |
|
|
|
bulletjme { |
|
|
|
bulletjme(NativeLibrarySpec) { |
|
|
|
|
|
|
|
targetPlatform 'Windows64' |
|
|
|
|
|
|
|
targetPlatform 'Windows32' |
|
|
|
|
|
|
|
targetPlatform 'Mac64' |
|
|
|
|
|
|
|
targetPlatform 'Mac32' |
|
|
|
|
|
|
|
targetPlatform 'Linux64' |
|
|
|
|
|
|
|
targetPlatform 'Linux32' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sources { |
|
|
|
|
|
|
|
cpp { |
|
|
|
|
|
|
|
source { |
|
|
|
|
|
|
|
srcDir 'src/native/cpp' |
|
|
|
|
|
|
|
srcDir bulletSrcPath |
|
|
|
|
|
|
|
exclude 'BulletMultiThreaded/GpuSoftBodySolvers/**' |
|
|
|
|
|
|
|
include '**/*.cpp' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
exportedHeaders { |
|
|
|
|
|
|
|
srcDir 'src/native/cpp' |
|
|
|
|
|
|
|
srcDir bulletSrcPath |
|
|
|
|
|
|
|
include '**/*.h' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
binaries { |
|
|
|
|
|
|
|
withType(SharedLibraryBinarySpec) { |
|
|
|
|
|
|
|
def projectPath = project.projectDir.absolutePath |
|
|
|
|
|
|
|
def javaHome = org.gradle.internal.jvm.Jvm.current().javaHome |
|
|
|
|
|
|
|
def os = targetPlatform.operatingSystem.name |
|
|
|
|
|
|
|
def arch = targetPlatform.architecture.name |
|
|
|
|
|
|
|
def fileName = sharedLibraryFile.name |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Gradle decided to change underscores to dashes - fix that. |
|
|
|
|
|
|
|
arch = arch.replaceAll('-', '_') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// For all binaries that can't be built on the current system |
|
|
|
|
|
|
|
if (buildNativeProjects != "true") { |
|
|
|
|
|
|
|
buildable = false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!buildable) { |
|
|
|
|
|
|
|
if (sharedLibraryFile.exists()) { |
|
|
|
|
|
|
|
// Add binary to jar file if the binary exists in the build folder already, |
|
|
|
|
|
|
|
// e.g. when the build of jme3-bullet-native has been run on a virtual box |
|
|
|
|
|
|
|
// and the project hasn't been cleaned yet. |
|
|
|
|
|
|
|
jar.into("native/${os}/${arch}") { |
|
|
|
|
|
|
|
from sharedLibraryFile |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
// Get from libs folder if no fresh build is available in the build folder and add to jar file |
|
|
|
|
|
|
|
def precompiledFile = Paths.get(projectPath, 'libs', 'native', os, arch, fileName).toFile() |
|
|
|
|
|
|
|
if (precompiledFile.exists()) { |
|
|
|
|
|
|
|
jar.into("native/${os}/${arch}") { |
|
|
|
|
|
|
|
from precompiledFile |
|
|
|
} |
|
|
|
} |
|
|
|
all { |
|
|
|
} |
|
|
|
binaries.all { |
|
|
|
} |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (toolChain in VisualCpp) { |
|
|
|
if (toolChain in VisualCpp) { |
|
|
|
cppCompiler.args "/I${org.gradle.internal.jvm.Jvm.current().javaHome}\\include" |
|
|
|
cppCompiler.args "/I$javaHome\\include" |
|
|
|
} else{ |
|
|
|
} else{ |
|
|
|
cppCompiler.args '-I', "${org.gradle.internal.jvm.Jvm.current().javaHome}/include" |
|
|
|
cppCompiler.args '-I', "$javaHome/include" |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (targetPlatform.operatingSystem.name == "osx") { |
|
|
|
if (os == "osx") { |
|
|
|
cppCompiler.args '-I', "${org.gradle.internal.jvm.Jvm.current().javaHome}/include/darwin" |
|
|
|
cppCompiler.args '-I', "$javaHome/include/darwin" |
|
|
|
} else if (targetPlatform.operatingSystem.name == "linux") { |
|
|
|
} else if (os == "linux") { |
|
|
|
cppCompiler.args "-fvisibility=hidden" |
|
|
|
cppCompiler.args "-fvisibility=hidden" |
|
|
|
cppCompiler.args '-I', "${org.gradle.internal.jvm.Jvm.current().javaHome}/include/linux" |
|
|
|
cppCompiler.args '-I', "$javaHome/include/linux" |
|
|
|
cppCompiler.args "-fPIC" |
|
|
|
cppCompiler.args "-fPIC" |
|
|
|
cppCompiler.args "-fpermissive" |
|
|
|
cppCompiler.args "-fpermissive" |
|
|
|
linker.args "-fvisibility=hidden" |
|
|
|
linker.args "-fvisibility=hidden" |
|
|
|
|
|
|
|
} else if (os == "windows") { |
|
|
|
// cppCompiler.args "-static-libgcc" |
|
|
|
|
|
|
|
// cppCompiler.args "-static-libstdc++" |
|
|
|
|
|
|
|
// linker.args "-static-libgcc" |
|
|
|
|
|
|
|
// linker.args "-static-libstdc++" |
|
|
|
|
|
|
|
} else if (targetPlatform.operatingSystem.name == "windows") { |
|
|
|
|
|
|
|
if (toolChain in Gcc) { |
|
|
|
if (toolChain in Gcc) { |
|
|
|
if (toolChain.name.startsWith('mingw')) { |
|
|
|
if (toolChain.name.startsWith('mingw')) { |
|
|
|
cppCompiler.args '-I', "${projectDir}/src/native/cpp/fake_win32" |
|
|
|
cppCompiler.args '-I', "$projectDir/src/native/cpp/fake_win32" |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
cppCompiler.args '-I', "${org.gradle.internal.jvm.Jvm.current().javaHome}/include/win32" |
|
|
|
cppCompiler.args '-I', "$javaHome/include/win32" |
|
|
|
} |
|
|
|
} |
|
|
|
cppCompiler.args "-fpermissive" |
|
|
|
cppCompiler.args "-fpermissive" |
|
|
|
cppCompiler.args "-static" |
|
|
|
cppCompiler.args "-static" |
|
|
@ -48,45 +99,59 @@ libraries { |
|
|
|
linker.args "-Wl,--exclude-all-symbols" |
|
|
|
linker.args "-Wl,--exclude-all-symbols" |
|
|
|
} |
|
|
|
} |
|
|
|
else if (toolChain in VisualCpp) { |
|
|
|
else if (toolChain in VisualCpp) { |
|
|
|
cppCompiler.args "/I${org.gradle.internal.jvm.Jvm.current().javaHome}\\include\\win32" |
|
|
|
cppCompiler.args "/I$javaHome\\include\\win32" |
|
|
|
} |
|
|
|
} |
|
|
|
cppCompiler.define('WIN32') |
|
|
|
cppCompiler.define('WIN32') |
|
|
|
// linker.args 'Shlwapi.lib', 'Advapi32.lib' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tasks.all { dependsOn unzipBulletIfNeeded } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add output to jar file |
|
|
|
|
|
|
|
jar.into("native/${os}/${arch}") { |
|
|
|
|
|
|
|
from sharedLibraryFile |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// C++ sources for binary compilation |
|
|
|
// Add depend on build |
|
|
|
sources { |
|
|
|
jar.dependsOn tasks |
|
|
|
bulletjme { |
|
|
|
// Add output to libs folder |
|
|
|
cpp { |
|
|
|
task "copyBinaryToLibs${targetPlatform.name}"(type: Copy, dependsOn: tasks) { |
|
|
|
source { |
|
|
|
from sharedLibraryFile |
|
|
|
srcDir 'src/native/cpp' |
|
|
|
into "libs/native/${os}/${arch}" |
|
|
|
srcDir bulletSrcPath |
|
|
|
|
|
|
|
exclude 'BulletMultiThreaded/GpuSoftBodySolvers/**' |
|
|
|
|
|
|
|
include '**/*.cpp' |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
exportedHeaders { |
|
|
|
// Add depend on copy |
|
|
|
srcDir 'src/native/cpp' |
|
|
|
jar.dependsOn("copyBinaryToLibs${targetPlatform.name}") |
|
|
|
srcDir bulletSrcPath |
|
|
|
|
|
|
|
include '**/*.h' |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
withType(StaticLibraryBinarySpec) { |
|
|
|
|
|
|
|
buildable = false |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Java source sets for IDE acces and source jar bundling / mavenization |
|
|
|
platforms { |
|
|
|
sourceSets { |
|
|
|
Windows32 { |
|
|
|
main { |
|
|
|
architecture "x86" |
|
|
|
java { |
|
|
|
operatingSystem "windows" |
|
|
|
srcDir 'src/native/cpp' |
|
|
|
} |
|
|
|
|
|
|
|
Windows64 { |
|
|
|
|
|
|
|
architecture "x86_64" |
|
|
|
|
|
|
|
operatingSystem "windows" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Mac32 { |
|
|
|
|
|
|
|
architecture "x86" |
|
|
|
|
|
|
|
operatingSystem "osx" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Mac64 { |
|
|
|
|
|
|
|
architecture "x86_64" |
|
|
|
|
|
|
|
operatingSystem "osx" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Linux32 { |
|
|
|
|
|
|
|
architecture "x86" |
|
|
|
|
|
|
|
operatingSystem "linux" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Linux64 { |
|
|
|
|
|
|
|
architecture "x86_64" |
|
|
|
|
|
|
|
operatingSystem "linux" |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set of target platforms, will be available based on build system |
|
|
|
|
|
|
|
model { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toolChains { |
|
|
|
toolChains { |
|
|
|
gcc(Gcc) |
|
|
|
gcc(Gcc) |
|
|
@ -112,112 +177,40 @@ model { |
|
|
|
target("windows_x86_64") |
|
|
|
target("windows_x86_64") |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
platforms{ |
|
|
|
// Java source sets for IDE access and source jar bundling / mavenization |
|
|
|
// osx_universal { // TODO: universal binary doesn't work? |
|
|
|
sourceSets { |
|
|
|
// architecture 'x86_64' |
|
|
|
main { |
|
|
|
// architecture 'x86' |
|
|
|
java { |
|
|
|
// operatingSystem 'osx' |
|
|
|
srcDir 'src/native/cpp' |
|
|
|
// } |
|
|
|
|
|
|
|
osx_x86 { |
|
|
|
|
|
|
|
architecture "x86" |
|
|
|
|
|
|
|
operatingSystem "osx" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
osx_x86_64 { |
|
|
|
|
|
|
|
architecture "x86_64" |
|
|
|
|
|
|
|
operatingSystem "osx" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
linux_x86 { |
|
|
|
|
|
|
|
architecture "x86" |
|
|
|
|
|
|
|
operatingSystem "linux" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
linux_x86_64 { |
|
|
|
|
|
|
|
architecture "x86_64" |
|
|
|
|
|
|
|
operatingSystem "linux" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
windows_x86 { |
|
|
|
|
|
|
|
architecture "x86" |
|
|
|
|
|
|
|
operatingSystem "windows" |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
windows_x86_64 { |
|
|
|
|
|
|
|
architecture "x86_64" |
|
|
|
|
|
|
|
operatingSystem "windows" |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Download bullet if not available |
|
|
|
|
|
|
|
task downloadBullet(type: MyDownload) { |
|
|
|
task downloadBullet(type: MyDownload) { |
|
|
|
sourceUrl = bulletUrl |
|
|
|
sourceUrl = bulletUrl |
|
|
|
target = file(bulletZipFile) |
|
|
|
target = file(bulletZipFile) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Unzip bullet if not available |
|
|
|
|
|
|
|
task unzipBullet(type: Copy) { |
|
|
|
task unzipBullet(type: Copy) { |
|
|
|
def zipFile = file(bulletZipFile) |
|
|
|
from zipTree(bulletZipFile) |
|
|
|
def outputDir = file(".") |
|
|
|
into file('.') |
|
|
|
|
|
|
|
|
|
|
|
from zipTree(zipFile) |
|
|
|
|
|
|
|
into outputDir |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
unzipBullet.dependsOn { |
|
|
|
unzipBullet.dependsOn { |
|
|
|
def zipFilePath = project.projectDir.absolutePath + File.separator + bulletZipFile |
|
|
|
if (!file(bulletZipFile).exists()) { |
|
|
|
def zipFile = new File(zipFilePath) |
|
|
|
|
|
|
|
if (!zipFile.exists()) { |
|
|
|
|
|
|
|
downloadBullet |
|
|
|
downloadBullet |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
compileJava.dependsOn { |
|
|
|
task unzipBulletIfNeeded << { |
|
|
|
if(buildNativeProjects=="true"){ |
|
|
|
|
|
|
|
def bulletUnzipDir = new File(project.projectDir.absolutePath + File.separator + bulletFolder) |
|
|
|
|
|
|
|
if (!bulletUnzipDir.isDirectory()) { |
|
|
|
|
|
|
|
unzipBullet |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
binaries.withType(StaticLibraryBinarySpec) { |
|
|
|
|
|
|
|
buildable = false |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Adds all available binaries to java jar task |
|
|
|
unzipBulletIfNeeded.dependsOn { |
|
|
|
binaries.withType(SharedLibraryBinary) { binary -> |
|
|
|
if (buildNativeProjects == "true" && !file(bulletFolder).isDirectory()) { |
|
|
|
// For all binaries that can't be built on the current system |
|
|
|
unzipBullet |
|
|
|
if(buildNativeProjects!="true"){ |
|
|
|
|
|
|
|
buildable = false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (!buildable) { |
|
|
|
|
|
|
|
//Get from libs folder if no fresh build is available in the build folder and add to jar file |
|
|
|
|
|
|
|
if(!binary.tasks.outputFile.get(0).exists()){ |
|
|
|
|
|
|
|
def fileName = binary.tasks.outputFile.get(0).getName(); |
|
|
|
|
|
|
|
def precompiledFile = new File(project.projectDir.absolutePath + File.separator + "libs" + File.separator + "native" + File.separator + "${targetPlatform.operatingSystem.name}" + File.separator + "${targetPlatform.architecture.name}" + File.separator + "${fileName}") |
|
|
|
|
|
|
|
if(precompiledFile.exists()){ |
|
|
|
|
|
|
|
jar.into("native/${targetPlatform.operatingSystem.name}/${targetPlatform.architecture.name}") { from precompiledFile } |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} else{ |
|
|
|
|
|
|
|
// Add binary to jar file if the binary exists in the build folder already, |
|
|
|
|
|
|
|
// e.g. when the build of jme3-bullet-native has been run on a virtual box |
|
|
|
|
|
|
|
// and the project hasn't been cleaned yet. |
|
|
|
|
|
|
|
jar.into("native/${targetPlatform.operatingSystem.name}/${targetPlatform.architecture.name}") { from binary.tasks.outputFile } |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// For all binaries that can be built on the current system |
|
|
|
|
|
|
|
def builderTask = binary.tasks |
|
|
|
|
|
|
|
// Add output to jar file |
|
|
|
|
|
|
|
jar.into("native/${targetPlatform.operatingSystem.name}/${targetPlatform.architecture.name}") { from builderTask.outputFile } |
|
|
|
|
|
|
|
// Add depend on build |
|
|
|
|
|
|
|
jar.dependsOn builderTask |
|
|
|
|
|
|
|
// Add output to libs folder |
|
|
|
|
|
|
|
task "copyBinaryToLibs${targetPlatform}"(type: Copy, dependsOn: builderTask) { |
|
|
|
|
|
|
|
from builderTask.outputFile |
|
|
|
|
|
|
|
into "libs/native/${targetPlatform.operatingSystem.name}/${targetPlatform.architecture.name}" |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
// Add depend on copy |
|
|
|
|
|
|
|
jar.dependsOn("copyBinaryToLibs${targetPlatform}") |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Helper class to wrap ant dowload task |
|
|
|
// Helper class to wrap ant dowload task |
|
|
@ -233,4 +226,3 @@ class MyDownload extends DefaultTask { |
|
|
|
ant.get(src: sourceUrl, dest: target) |
|
|
|
ant.get(src: sourceUrl, dest: target) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|