I'm not sure if you are asking how to access the relative directory in Windows or how to set this path without the -Djava.library.path=... parameter. So, I will answer both.
To set the relative path, use:
-Djava.library.path=.\windows
To set this path on Windows without using -D, add the PATH environment variable:
setenv PATH %PATH%;C:\path\to\folder
On Linux / Mac, install / add LD_LIBRARY_PATH with this folder.
source share