Skip to content

Commit

Permalink
Windows では openh264 を入れない
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Jul 2, 2023
1 parent 71aff90 commit 713316e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,14 +627,15 @@ def install_deps(build_platform: PlatformTarget, target_platform: PlatformTarget
else:
add_path(os.path.join(install_dir, 'cmake', 'bin'))

# OpenH264
install_openh264_args = {
'version': version['OPENH264_VERSION'],
'version_file': os.path.join(install_dir, 'openh264.version'),
'source_dir': source_dir,
'install_dir': install_dir,
}
install_openh264(**install_openh264_args)
if build_platform.os != 'windows':
# OpenH264
install_openh264_args = {
'version': version['OPENH264_VERSION'],
'version_file': os.path.join(install_dir, 'openh264.version'),
'source_dir': source_dir,
'install_dir': install_dir,
}
install_openh264(**install_openh264_args)


def cmake_path(path: str) -> str:
Expand Down

0 comments on commit 713316e

Please sign in to comment.