File tree 2 files changed +2
-11
lines changed
open-simulation-interface-3.0.1
open-simulation-interface-3.2.0
2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,10 @@ class OpenSimulationInterfaceConan(ConanFile):
15
15
options = {
16
16
"shared" : [True , False ],
17
17
"fPIC" : [True , False ],
18
- "protoc_from_protobuf" : [True , False ],
19
18
}
20
19
default_options = {
21
20
"shared" : True ,
22
21
"fPIC" : True ,
23
- "protoc_from_protobuf" : False ,
24
22
}
25
23
generators = "cmake"
26
24
build_policy = "missing"
@@ -29,7 +27,7 @@ class OpenSimulationInterfaceConan(ConanFile):
29
27
"CMakeLists.txt" ,
30
28
]
31
29
requires = [
32
- "protobuf/[>= 2.6.1]@bincrafters /stable" ,
30
+ "protobuf/2.6.1@cloe /stable"
33
31
]
34
32
35
33
_git_url = (
@@ -40,10 +38,6 @@ class OpenSimulationInterfaceConan(ConanFile):
40
38
41
39
_cmake = None
42
40
43
- def build_requirements (self ):
44
- if not self .options .protoc_from_protobuf :
45
- self .build_requires ("protoc_installer/[>=2.6.1]@bincrafters/stable" )
46
-
47
41
def source (self ):
48
42
git = tools .Git (folder = self ._git_dir )
49
43
git .clone (self ._git_url , self ._git_ref , shallow = True )
Original file line number Diff line number Diff line change @@ -26,11 +26,8 @@ class OpenSimulationInterfaceConan(ConanFile):
26
26
exports_sources = [
27
27
"CMakeLists.txt" ,
28
28
]
29
- build_requires = [
30
- "protoc_installer/[>=2.6.1]@bincrafters/stable" ,
31
- ]
32
29
requires = [
33
- "protobuf/[>= 2.6.1]@bincrafters /stable" ,
30
+ "protobuf/2.6.1@cloe /stable"
34
31
]
35
32
36
33
_git_url = (
You can’t perform that action at this time.
0 commit comments