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 5025d18 commit e7615af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions oqs/oqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ def _install_liboqs():
src = tmpdirname + r"\liboqs\build\bin\Debug\oqs.dll"
dest = oqs_path
print("copying..")
copy_cmd = "copy " + src + " " + dest
print("copy command: ")
print(copy_cmd)
os.system("copy " + src + " " + dest)
print("done copying")
sys.path.append(oqs_path)
Expand Down

0 comments on commit e7615af

Please sign in to comment.