예제 #1
0
 def _clang_cxx_library(self):
     return 'CLANG_CXX_LIBRARY{}={}'.format(
         _xcconfig_conditional(self._conanfile.settings),
         self.libcxx) if self.libcxx else ""
예제 #2
0
 def _clang_cxx_language_standard(self):
     return 'CLANG_CXX_LANGUAGE_STANDARD{}={}'.format(
         _xcconfig_conditional(self._conanfile.settings),
         self._cppstd) if self._cppstd else ""
예제 #3
0
 def _macosx_deployment_target(self):
     return 'MACOSX_DEPLOYMENT_TARGET{}={}'.format(
         _xcconfig_conditional(self._conanfile.settings),
         self.os_version) if self.os_version else ""