blob: 245adf56083899b5dac5d6d6e30dc60db4d68696 (
plain)
1
2
3
4
5
6
7
8
|
# Create imported target protobuf::protoc
add_executable(protobuf::protoc IMPORTED)
# Import target "protobuf::protoc" for configuration "Release"
set_property(TARGET protobuf::protoc APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(protobuf::protoc PROPERTIES
IMPORTED_LOCATION_RELEASE "${Protobuf_PROTOC_EXECUTABLE}"
)
|