diff options
author | nyorain <nyorain@gmail.com> | 2017-07-25 21:49:01 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2017-07-25 21:49:01 +0200 |
commit | 0c2ef49dc504368dd4ff80545b38c2380391cd65 (patch) | |
tree | 7cc2f3c5f43b5a20004ea16eecb9f4c77d0123e2 /mesonbuild | |
parent | 0aa71d680898fd2812a3038a57eb9f9231af1de4 (diff) | |
download | meson-0c2ef49dc504368dd4ff80545b38c2380391cd65.zip meson-0c2ef49dc504368dd4ff80545b38c2380391cd65.tar.gz meson-0c2ef49dc504368dd4ff80545b38c2380391cd65.tar.bz2 |
Trigger travis
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/dependencies/ui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index 488e3a2..d639285 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -505,7 +505,7 @@ class VulkanDependency(ExternalDependency): raise DependencyException('VULKAN_SDK must be an absolute path.') # TODO: this config might not work on some platforms, fix bugs as reported - # we at least have to detect other 64-bit platforms (e.g. armv8) + # we should at least detect other 64-bit platforms (e.g. armv8) lib_name = 'vulkan' if mesonlib.is_windows(): lib_name = 'vulkan-1' @@ -520,8 +520,8 @@ class VulkanDependency(ExternalDependency): self.link_args.append('-L' + os.path.join(self.vulkan_sdk, lib_dir)) self.link_args.append('-l' + lib_name) - # TODO: find a way to retrieve this from the sdk - # we could try go guess it depending on the vulkan_sdk path + # TODO: find a way to retrieve the version from the sdk? + # we could try go guess it depending on the vulkan_sdk path. # usually the paths last component is the vulkan version # but this might be modified at installation self.version = '1' |