コード例 #1
0
    def output(self):
        prefix = self._prefix

        if '-WbF' in self._flags:
            return make_tuples([prefix + 'DynSK.h', prefix + 'SK.h', prefix + '_defs.hh', prefix + '_operators.hh', prefix + '_poa.hh'])

        if self._genh:
            return make_tuples([prefix + 'DynSK.h', prefix + 'SK.h', prefix + '.hh'])

        return make_tuples([prefix + 'DynSK.cc', prefix + 'SK.cc', prefix + '.hh'])
コード例 #2
0
ファイル: idl.py プロジェクト: Xiaodingdangguaiguai/catboost
    def output(self):
        prefix = self._prefix

        if '-WbF' in self._flags:
            return make_tuples([prefix + 'DynSK.h', prefix + 'SK.h', prefix + '_defs.hh', prefix + '_operators.hh', prefix + '_poa.hh'])

        if self._genh:
            return make_tuples([prefix + 'DynSK.h', prefix + 'SK.h', prefix + '.hh'])

        return make_tuples([prefix + 'DynSK.cc', prefix + 'SK.cc', prefix + '.hh'])
コード例 #3
0
 def input(self):
     return common.make_tuples([self._path])
コード例 #4
0
ファイル: flatc.py プロジェクト: arcadia-devtools/test
 def output(self):
     return common.make_tuples(
         [common.tobuilddir(common.stripext(self._path)) + '.fbs.h'])
コード例 #5
0
ファイル: flatc.py プロジェクト: iamnik13/catboost
 def input(self):
     return common.make_tuples([self._path, '$S/build/scripts/stdout2stderr.py'])
コード例 #6
0
ファイル: rodata.py プロジェクト: PaulGureghian1/CatBoost
 def input(self):
     return common.make_tuples(self._pre_include + [self._path])
コード例 #7
0
ファイル: rodata.py プロジェクト: PaulGureghian1/CatBoost
 def output(self):
     return common.make_tuples([self.main_out()])
コード例 #8
0
 def output(self):
     return common.make_tuples([common.tobuilddir(common.stripext(self._path)) + '.o'])
コード例 #9
0
 def input(self):
     return make_tuples([self._path])
コード例 #10
0
ファイル: xsyn.py プロジェクト: Xiaodingdangguaiguai/catboost
 def output(self):
     return common.make_tuples([
         common.tobuilddir(self._path + '.h.rl5')
     ])
コード例 #11
0
ファイル: xsyn.py プロジェクト: Xiaodingdangguaiguai/catboost
 def input(self):
     return common.make_tuples([
         '$S/library/xml/parslib/xsyn2ragel.py',
         self._path,
         '$S/library/xml/parslib/xmlpars.xh'
     ])
コード例 #12
0
ファイル: flatc.py プロジェクト: yingxi320/catboost
 def output(self):
     return common.make_tuples([
         common.tobuilddir(common.stripext(self._path)) + self.extension()
     ])
コード例 #13
0
ファイル: xsyn.py プロジェクト: PaulGureghian1/CatBoost
 def output(self):
     return common.make_tuples([common.tobuilddir(self._path + '.h.rl5')])
コード例 #14
0
ファイル: xsyn.py プロジェクト: PaulGureghian1/CatBoost
 def input(self):
     return common.make_tuples([
         '$S/library/xml/parslib/xsyn2ragel.py', self._path,
         '$S/library/xml/parslib/xmlpars.xh'
     ])
コード例 #15
0
 def output(self):
     return common.make_tuples([common.tobuilddir(common.stripext(self._path)) + self.extension()])
コード例 #16
0
 def output(self):
     return common.make_tuples([self.main_out()])
コード例 #17
0
 def input(self):
     return common.make_tuples(self._pre_include + [self._path])
コード例 #18
0
ファイル: rodata.py プロジェクト: PaulGureghian1/CatBoost
 def input(self):
     return common.make_tuples([self._path])
コード例 #19
0
 def input(self):
     return common.make_tuples(
         [self._path, '$S/build/scripts/stdout2stderr.py'])
コード例 #20
0
ファイル: idl.py プロジェクト: Xiaodingdangguaiguai/catboost
 def input(self):
     return make_tuples([self._path])