Protobuf's cmake environment does not properly handle being exported (#15293)

and found when using the RelWithDebInfo build type.  Change protobuf
to only support Release and Debug build types.
This commit is contained in:
Brian Van Essen 2020-03-03 09:27:01 -08:00 committed by GitHub
parent d6b0cf75ed
commit f83d98a62d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,9 @@ class Protobuf(CMakePackage):
variant('shared', default=True,
description='Enables the build of shared libraries')
variant('build_type', default='Release',
description='The build type to build',
values=('Debug', 'Release'))
depends_on('zlib')