odbcEngineLocalReleasePaths function

  1. @visibleForTesting
List<String> odbcEngineLocalReleasePaths(
  1. String root
)

Workspace then crate-local release paths under root.

Implementation

@visibleForTesting
List<String> odbcEngineLocalReleasePaths(String root) {
  final name = _libraryName();
  final sep = Platform.pathSeparator;
  return [
    '$root${sep}native${sep}target${sep}release$sep$name',
    '$root${sep}native${sep}odbc_engine${sep}target${sep}release$sep$name',
  ];
}