Skip to content

Commit

Permalink
FIxing appveyor/travis
Browse files Browse the repository at this point in the history
  • Loading branch information
scrgiorgio committed Oct 3, 2018
1 parent fb934ea commit ef651bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
8 changes: 6 additions & 2 deletions CMake/OpenVisus.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@

import os,sys

__this_dir__=os.path.dirname(os.path.abspath(__file__))
__this_dir__=os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
if not __this_dir__ in sys.path:
sys.path.append(__this_dir__)

__bin_dir__=os.path.abspath(__this_dir__+ "/bin")
if not __bin_dir__ in sys.path:
sys.path.append(__bin_dir__)


# /////////////////////////////////////////////////////////
def check():
Expand Down
8 changes: 1 addition & 7 deletions CMake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import platform

#increase this number for PIP
VERSION="1.2.42"
VERSION="1.2.43"

WIN32=platform.system()=="Windows" or platform.system()=="win32"
APPLE=platform.system()=="Darwin"
Expand Down Expand Up @@ -47,12 +47,6 @@ def findFilesInCurrentDirectory():
if filename.endswith(".pdb"):
continue

if filename.startswith(os.path.abspath('./bin')) and os.path.basename(filename).startswith("Qt5") and os.path.basename(filename).endswith(".dll"):
continue

if filename.startswith(os.path.abspath('./bin/plugins')):
continue

ret.append(filename)

return ret
Expand Down

0 comments on commit ef651bc

Please sign in to comment.