mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-09 00:03:00 +02:00
8 lines
348 B
CMake
8 lines
348 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}"
|
|
)
|