(cmake_build_dir)
| 32 | |
| 33 | |
| 34 | def FindFiles(cmake_build_dir): |
| 35 | result = [] |
| 36 | for root, dirs, files in os.walk(cmake_build_dir): |
| 37 | for file_ in files: |
| 38 | path = os.path.join(root, file_) |
| 39 | if file_ == 'libwabt.a' or re.search(r'emscripten-helpers', file_): |
| 40 | result.append(path) |
| 41 | return result |
| 42 | |
| 43 | |
| 44 | def GetNM(emscripten_dir): |