Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Sep 9, 2023
1 parent 7988ffe commit ea59e3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def install_deps(arch=None):
build.append('zlib*')
build.append('libpng*')
build.append('boost*')
if platform.architecture()[0] == '32bit' and platform.machine().lower() in (conan_archs['x86_64'] + conan_archs['x86']):
if platform.architecture()[0] == '32bit' or platform.machine().lower() not in (conan_archs['armv8'] + conan_archs['x86']):
build.append('cmake*')
if build == []:
build.append('missing')
Expand Down

0 comments on commit ea59e3c

Please sign in to comment.