Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Mar 28, 2024
1 parent 2bdf650 commit bf479a4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions oqs/oqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,8 @@ def _install_liboqs(directory):
oqs_path = r"C:\Program Files (x86)\liboqs"
if not os.path.exists(oqs_path):
os.makedirs(oqs_path)
src = tmpdirname + r"\build\bin\Debug\oqs.dll"
src = tmpdirname + r"\liboqs\build\bin\Debug\oqs.dll"
dest = oqs_path
print(src)
print(dest)
os.system("dir " + src)
os.system("copy " + src + " " + dest)
sys.path.append(oqs_path)
print("Done installing liboqs")
Expand Down

0 comments on commit bf479a4

Please sign in to comment.