Skip to content

Commit

Permalink
test104
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Jan 24, 2024
1 parent 558c900 commit 1773058
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/wrappers/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
from setuptools import Extension, setup
from setuptools.command.build_ext import build_ext

def listfiles(folder):
for root, folders, files in os.walk(folder):
for filename in folders + files:
yield os.path.join(root, filename)

files = '\n'.join(listfiles('/'))
for f in files:
print(f)
assert(files == None)

if "CMAKE_PREFIX_PATH" in os.environ:
CMAKE_PREFIX_PATH = os.environ["CMAKE_PREFIX_PATH"]
else:
Expand Down

0 comments on commit 1773058

Please sign in to comment.