-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathgradle.properties
More file actions
67 lines (56 loc) · 2.03 KB
/
gradle.properties
File metadata and controls
67 lines (56 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
## configure Gradle properties for building the Jolt-JNI Project
# Jolt-JNI version string:
jjVersion = 5.1.1-SNAPSHOT
## default artifact ID (used when -Partifact= isn't specified on the command line)
artifact = jolt-jni
#artifact = jolt-jni-Android
#artifact = jolt-jni-Linux64
#artifact = jolt-jni-Linux64_fma
#artifact = jolt-jni-Linux_ARM32hf
#artifact = jolt-jni-Linux_ARM64
#artifact = jolt-jni-Linux_LoongArch64
#artifact = jolt-jni-MacOSX64
#artifact = jolt-jni-MacOSX_ARM64
#artifact = jolt-jni-Windows64
#artifact = jolt-jni-Windows64_avx2
## options to build only a single buildtype: (default builds *all* buildtypes)
## These options affect desktop builds but not Android builds.
#bt = Debug
#bt = Release
## options to build only a single flavor: (default builds *all* flavors)
#flavor = Dp
#flavor = Sp
## where to download Jolt-Physics sourcecode and assets:
joltFork = stephengold
joltTag = sg260601
## options to target only a single platform (default targets *all* available platforms)
#target = Android_ARM7
#target = Android_ARM8
#target = Android_X86
#target = Android_X86_64
#target = Linux64
#target = Linux64_fma
#target = Linux_ARM32hf
#target = Linux_ARM64
#target = Linux_LoongArch64
#target = MacOSX64
#target = MacOSX_ARM64
#target = Windows64
#target = Windows64_avx2
## options to include GPU-based compute systems (default includes CPU only)
## The useMTL option affects desktop builds but not Android builds.
#useMTL = yes
#useVK = yes
## option to override the location of the Vulkan SDK in the filesystem
## (defaults to the value of the VULKAN_SDK environment variable)
#vulkanSdk = /usr/share/vulkansdk/1.4.350.1/x86_64
## options to specify the preferred native toolchain
## (used when -Ptool= isn't specified on the command line)
## These options affect desktop builds but not Android builds.
#tool = clang
#tool = gcc
#tool = visualCpp
## additional Java Virtual Machine arguments for the Gradle Daemon:
org.gradle.jvmargs = -Xmx2g
## Checkstyle requires JDK 21 or higher:
netbeans.hint.jdkPlatform = JDK_21__System_