mirror of https://github.com/kivy/pyjnius.git
add library location for setup.py on Windows
This commit is contained in:
parent
582cff5626
commit
395df291f4
|
@ -207,6 +207,10 @@ class WindowsJavaLocation(JavaLocation):
|
|||
def get_libraries(self):
|
||||
return ['jvm']
|
||||
|
||||
def get_library_dirs(self):
|
||||
suffices = ['lib', join('bin', 'server')]
|
||||
return [ join(self.home, suffix) for suffix in suffices ]
|
||||
|
||||
def _get_platform_include_dir(self):
|
||||
return join(self.home, 'include', 'win32')
|
||||
|
||||
|
|
Loading…
Reference in New Issue