-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathbuild.properties
More file actions
60 lines (50 loc) · 2.55 KB
/
build.properties
File metadata and controls
60 lines (50 loc) · 2.55 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
# =============================================================================
# HDFView Build Configuration Template
# Copy this file to build.properties and customize for your environment
# =============================================================================
# -----------------------------------------------------------------------------
# Native Library Configuration
# -----------------------------------------------------------------------------
# Absolute path to HDF5 lib directory (REQUIRED)
# Windows: provide path to bin with forward slashes, e.g. C:/path/to/hdf5/bin
# Linux/Mac: provide path to lib, e.g. /path/to/hdf5/lib
hdf5.lib.dir=
# HDF5 plugin directory (OPTIONAL)
hdf5.plugin.dir=${hdf5.lib.dir}/plugin
# Absolute path to HDF4 lib directory (OPTIONAL, required for HDF4 support)
# Windows: provide path to bin with forward slashes, e.g. C:/path/to/hdf4/bin
# Linux/Mac: provide path to lib, e.g. /path/to/hdf4/lib
hdf.lib.dir=
# -----------------------------------------------------------------------------
# Platform-Specific Runtime Configuration
# -----------------------------------------------------------------------------
# Platform library path for native libraries (used for java.library.path)
# Linux/macOS: Use /lib directory (shared libraries) - colon-separated for multiple paths
# Windows: Use /bin directory (DLLs) - semicolon-separated for multiple paths
# Examples:
# Linux: platform.hdf.lib=/path/to/hdf5/lib:/path/to/hdf4/lib
# Windows: platform.hdf.lib=C:/path/to/hdf5/bin;C:/path/to/hdf4/bin
# NOTE: Environment variable placeholders like ${env.LD_LIBRARY_PATH} do NOT work - use actual paths
platform.hdf.lib=
# -----------------------------------------------------------------------------
# Build Configuration
# -----------------------------------------------------------------------------
# Enable debugging information in compiled classes
build.debug=true
build.antoutput.append=false
build.log.level=info
build.log.level.run=trace
build.log.level.test=
build.object.test=
# Uncomment to enable JaCoCo code coverage analysis
#build.jacoco=true
# -----------------------------------------------------------------------------
# Platform-Specific Packaging Configuration (optional)
# -----------------------------------------------------------------------------
# macOS JRE configuration for application packaging
install.mac.jre=${env.OSX_JRE_HOME}
jre.dir.name=${env.OSX_JRE_NAME}
# Documentation directory for Maven site/documentation generation
userguide.dir=
# Windows installer tools (WiX) for application packaging
wix.dir=${env.WIX}/bin