Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit 7c443a3

Browse files
committed
Method made protected.
1 parent cca41bf commit 7c443a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conanfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class CppUTest(ConanFile):
4545
if version == "master":
4646
scm["revision"] = "master"
4747

48-
def my_cmake(self):
48+
def _my_cmake(self):
4949
cmake = CMake(self, set_cmake_flags=True)
5050
cmake.verbose = self.options.verbose
5151
# Translate our options to CppUTest's cmake options
@@ -66,13 +66,13 @@ def source(self):
6666
pass
6767

6868
def build(self):
69-
cmake = self.my_cmake()
69+
cmake = self._my_cmake()
7070
cmake.build()
7171
if self.options.tests:
7272
cmake.test()
7373

7474
def package(self):
75-
cmake = self.my_cmake()
75+
cmake = self._my_cmake()
7676
cmake.install()
7777

7878
def package_info(self):

0 commit comments

Comments
 (0)