mirror of
https://github.com/debauchee/barrier.git
synced 2025-08-03 00:29:28 +02:00
support for qt 5.2
This commit is contained in:
parent
cfc1aa2569
commit
bf361d153b
17 changed files with 471 additions and 158 deletions
|
@ -32,7 +32,7 @@ class Generator(object):
|
|||
|
||||
class MakefilesGenerator(Generator):
|
||||
def __init__(self):
|
||||
super(MakefilesGenerator, self).__init__('Unix Makefiles', 'build', '..', 'bin')
|
||||
super(MakefilesGenerator, self).__init__('Unix Makefiles')
|
||||
|
||||
def getBuildDir(self, target):
|
||||
return super(MakefilesGenerator, self).getBuildDir(target) + '/' + target
|
||||
|
@ -48,6 +48,14 @@ class MakefilesGenerator(Generator):
|
|||
|
||||
def getSourceDir(self):
|
||||
return super(MakefilesGenerator, self).getSourceDir() + '/..'
|
||||
|
||||
class XcodeGenerator(Generator):
|
||||
def __init__(self):
|
||||
super(XcodeGenerator, self).__init__('Xcode')
|
||||
|
||||
def getBinDir(self, target=''):
|
||||
xcodeTarget = target[0].upper() + target[1:]
|
||||
return super(XcodeGenerator, self).getBinDir(target) + '/' + xcodeTarget
|
||||
|
||||
class EclipseGenerator(Generator):
|
||||
def __init__(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue