summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-05-13 12:27:59 -0500
committerGitHub <noreply@github.com>2019-05-13 12:27:59 -0500
commit04350e1d1b7ff5457b1a36150d98d5a5efc0ed89 (patch)
tree875acb49ee5507ea9ad2bcc5146fb3c7c7d31eac /tools
parentb08819749e6c2a6d8d771f954f6162933a8ba648 (diff)
parentf0605283962ca61f35587d542c4cd684548168bd (diff)
Merge pull request #166 from haberman/bazel25
Compatibility with Bazel 0.25.2 and 0.24.1.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/make_cmakelists.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/make_cmakelists.py b/tools/make_cmakelists.py
index e320be4..44cd1b0 100755
--- a/tools/make_cmakelists.py
+++ b/tools/make_cmakelists.py
@@ -43,8 +43,8 @@ class BuildFileFunctions(object):
for file in files:
if os.path.isfile(file):
found_files.append(file)
- elif os.path.isfile("generated/" + file):
- found_files.append("generated/" + file)
+ elif os.path.isfile("generated_for_cmake/" + file):
+ found_files.append("generated_for_cmake/" + file)
else:
print("Warning: no such file: " + file)
@@ -175,6 +175,9 @@ class WorkspaceFileFunctions(object):
def git_repository(self, **kwargs):
pass
+ def bazel_version_repository(self, **kwargs):
+ pass
+
class Converter(object):
def __init__(self):
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback