9 lines
356 B
CMake
9 lines
356 B
CMake
|
# 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}"
|
||
|
)
|