| Products | Versions |
|---|---|
| TIBCO Streaming | 10 |
How do I add a native library path so that the application and unit tests can access the required libraries?
name = "myengine"
version = "1.0.0"
type = "com.tibco.ep.streambase.configuration.sbengine"
configuration = {
StreamBaseEngine = {
externalClassPath = [
"/absolute/path/d.jar"
"/absolute/path/g.jar"
"/absolute/path/root"
]
externalNativeLibraryPath = {
"osx_x86_64" = [
"/absolute/path/libfiles1"
"/absolute/path/libfiles2"
]
"windows_x86_64" = [
"C:/absoute/path/library1"
"C:/absoute/path/library2"
]
"linux_x86_64" = [
"/absolute/path/libfiles1"
"/absolute/path/libfiles2"
]
}
# other items ...
}
}
These path values may be replaced with substitution variables to allow for changes between separate deployment systems.