示例#1
0
def __getInstallCommand(target):
    command = ""
    if autoTools.isAutoToolsProject(target.path):
        command = autoTools.getInstallCommand()
    elif cmake.isCMakeProject(target.path):
        command = cmake.getInstallCommand()
    elif make.isMakeProject(target.path):
        command = make.getInstallCommand()
    return command
示例#2
0
def getInstallCommand():
    return make.getInstallCommand()