summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2018-11-14 16:46:19 -0800
committerJosh Haberman <jhaberman@gmail.com>2018-11-14 16:46:19 -0800
commit9ce4a77f61c134bbed28bfd5be5cd7dc0e80f5e3 (patch)
tree2275cab3e510d488354e341346b30928d142896b /tools
parent5f575995b56f2ae97d3b9f5dc1efef233def7419 (diff)
Updates to build system for upb C++ compiler.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/make_cmakelists.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_cmakelists.py b/tools/make_cmakelists.py
index 30e1b93..d7996d8 100755
--- a/tools/make_cmakelists.py
+++ b/tools/make_cmakelists.py
@@ -34,7 +34,7 @@ class BuildFileFunctions(object):
pass
def cc_library(self, **kwargs):
- if kwargs["name"] == "amalgamation":
+ if kwargs["name"] == "amalgamation" or kwargs["name"] == "upbc_generator":
return
files = kwargs.get("srcs", []) + kwargs.get("hdrs", [])
self.converter.toplevel += "add_library(%s\n %s)\n" % (
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback