Example #1
0
def build():
    shelltools.cd("%s/%s/build" % (get.workDIR(),WorkDir))
    cmaketools.make()
    
    #build plugin
    shelltools.cd("../src/Tools/plugins/widget")
    autotools.make()         
Example #2
0
def build():
    cmaketools.make()
    
    for i in ["library", "doc"]:
        shelltools.cd(i)
        cmaketools.make()
        shelltools.cd("..")
Example #3
0
def build():
    shelltools.cd("Release")
    cmaketools.make()
    shelltools.cd("..")
    shelltools.cd("kicad-i18n-4.0.7")
    shelltools.cd("Release")
    cmaketools.make()
    shelltools.cd("..")
Example #4
0
def build():
    shelltools.cd("build")
    cmaketools.make()
    shelltools.cd("..")

    shelltools.makedirs("release/plugins/include")
    shelltools.copy("source/blender/blenpluginapi/*.h", "release/plugins/include")

    shelltools.chmod("release/plugins/bmake", 0755)
    cmaketools.make("-C release/plugins")
Example #5
0
def build():
    cmaketools.make()

    # build libmysqld.so
    shelltools.makedirs("libmysqld/work")
    shelltools.cd("libmysqld/work")

    shelltools.system("ar -x ../libmysqld.a")
    shelltools.unlink("sql_binlog.cc.o")
    shelltools.unlink("rpl_utility.cc.o")
    autotools.compile("%s -shared -Wl,-soname,libmysqld.so.0 -o libmysqld.so.0.0.1 *.o \
                          -pthread -laio -lcrypt -lssl -lcrypto -lz -lrt -lstdc++ -ldl -ldm -lc" % get.LDFLAGS())
Example #6
0
def build():
    shelltools.cd("build")
    cmaketools.make()

    # these wont compile with our boost
    obsolotes = ["demo/Mesh_3", "demo/Polyhedron", "examples/Mesh_3", "examples/Polyhedron"]

    try:
        for i in obsolotes:
            shelltools.unlinkDir("%s" % i)
            shelltools.unlinkDir("%s/%s-%s/%s" % (get.workDIR(), get.srcNAME(), get.srcVERSION(), i))
    except Error, e:
        print e
Example #7
0
def build():
    shelltools.cd("build")
    cmaketools.make("-j1")

    # remove obsolote qt demos that either need older versions of qt or boost
    obsolotes = ["demo/Periodic_3_triangulation_3", "demo/Polyhedron", "examples/BGL_arrangement_2",\
                 "examples/Ridges_3", "examples/BGL_polyhedron_3", "examples/Arrangement_on_surface_2"]
    try:
        for i in obsolotes:
            shelltools.unlinkDir("%s" % i)
            shelltools.unlinkDir("%s/%s-%s/%s" % (get.workDIR(), get.srcNAME(), get.srcVERSION(), i))
    except Error, e:
        print e
Example #8
0
def build():
    cmaketools.make()

    #these wont compile with our boost
    #obsolotes = ["demo/Mesh_3", "demo/Polyhedron", "examples/Mesh_3", "examples/Polyhedron"]
    cmaketools.make("demos")
    cmaketools.make("examples")
Example #9
0
def build():
    
    shelltools.cd("build")
    
    cmaketools.make()
    cmaketools.make("doc")
Example #10
0
def build():
    cmaketools.make()

    shelltools.cd("src/gui")
    qt4.make()
Example #11
0
def build():
    shelltools.cd("build")
    cmaketools.make("VERBOSE=1")
Example #12
0
def build():

    shelltools.cd("xfce4-whiskermenu-plugin-1.1.1")
    cmaketools.make()
Example #13
0
def build():
    shelltools.cd("_build")
    cmaketools.make()
Example #14
0
def build():
    cmaketools.make("--silent")
Example #15
0
def build():
    cmaketools.make()
Example #16
0
def build():
    shelltools.cd("build")
    #shelltools.system("ninja")
    cmaketools.make(jobs)
Example #17
0
def build():
    cmaketools.make("-j1")
Example #18
0
def setup():
    shelltools.cd("build")
    cmaketools.make("../")
Example #19
0
def make(parameters=''):
    cmaketools.make(parameters)
Example #20
0
def build():
	shelltools.cd("%s/Vulkan-Loader-%s" %(get.workDIR(), ver))
	cmaketools.make()
		
	shelltools.cd("%s/Vulkan-ValidationLayers-%s" %(get.workDIR(), ver))
	cmaketools.make()
Example #21
0
def build():
    cmaketools.make()

    shelltools.cd("src/gui")
    qt4.make()
Example #22
0
def build():
    shelltools.cd("../cmake-make")
    cmaketools.make()
Example #23
0
def make(parameters=''):
    cmaketools.make(parameters)
Example #24
0
def build():
    shelltools.cd(gitbuild)
    cmaketools.make()
Example #25
0
def build():
    shelltools.cd(gitbuild)
    cmaketools.make()
Example #26
0
def build():
    shelltools.cd("cmake")
    cmaketools.make()
Example #27
0
def build():
    cmaketools.make("VERBOSE=1")
Example #28
0
def build():
    cmaketools.make()
    shelltools.system("./AstroMenace --pack --rawdata=./RAW_VFS_DATA --dir=./")
Example #29
0
def build():
    autotools.make("CXX=%s" % get.CXX())

    shelltools.cd("kdeplasma")
    cmaketools.make()
Example #30
0
def build():
    shelltools.cd("%s/%s/build/build" % (get.workDIR(), get.srcDIR()))
    cmaketools.make()
Example #31
0
def check():
    shelltools.cd("build")
    cmaketools.make("test")
Example #32
0
def build():
    cmaketools.make("VERBOSE=1")
Example #33
0
def build():
    cmaketools.make("LIBS=%s" % get.LDFLAGS())
Example #34
0
def build():
    shelltools.makedirs("build")
    shelltools.cd("build")

    cmaketools.make()
Example #35
0
def build():
    shelltools.cd('build')
    cmaketools.make()
Example #36
0
def build():
    shelltools.cd("../cmake-make")
    cmaketools.make()
Example #37
0
def build():
    shelltools.cd("build")

    #parallel compilation seems broken since 4.4.4
    cmaketools.make("-j1")
Example #38
0
def build():
    shelltools.export("HOME", get.workDIR())
    shelltools.cd("build")
    cmaketools.make()
Example #39
0
def build():
    cmaketools.make()
    cmaketools.make("api-docs")
Example #40
0
def build():
    cmaketools.make("-C build")
    cmaketools.make("-C build doc")
Example #41
0
def build():
    #shelltools.cd("build")
    cmaketools.make()
Example #42
0
def build():
    cmaketools.make("-C build")
Example #43
0
def build():
    shelltools.cd('midori-%s' %(get.srcVERSION()) )
    cmaketools.make()
Example #44
0
def check():
    cmaketools.make("test")
Example #45
0
def build():
    shelltools.cd("source")
    cmaketools.make()
Example #46
0
def build():
    shelltools.cd("applet")
    cmaketools.make()

    shelltools.cd("../dataengine")
    cmaketools.make()
Example #47
0
def make(parameters=""):
    cmaketools.make("-C build %s" % parameters)
Example #48
0
def build():
    shelltools.cd("build")
    cmaketools.make()
    cmaketools.make("translations")
Example #49
0
def build():
    cmaketools.make()
    shelltools.system("./AstroMenace --pack --rawdata=./RAW_VFS_DATA --dir=./")
Example #50
0
def make(parameters = ""):
    cmaketools.make("-C build %s" % parameters)
Example #51
0
def build():
    cmaketools.make("-j1")
Example #52
0
def build():
    shelltools.cd("%s/HotShots-2.0.0-src/build" % get.workDIR())
    cmaketools.make()
Example #53
0
def check():
    shelltools.cd("build")
    cmaketools.make("test")
Example #54
0
def setup():
    pisitools.cflags.add(
        "-Wno-implicit-function-declaration -Wno-misleading-indentation -Wno-unused-but-set-variable"
    )
    cmaketools.make("config shared=1 prefix=/usr")
Example #55
0
def build():
    shelltools.cd("build")

    cmaketools.make("lupdate")
    cmaketools.make("lrelease")
    cmaketools.make()
Example #56
0
def build():
    shelltools.cd("build")
    cmaketools.make("-j1")
Example #57
0
def build():
    shelltools.cd("build")
    cmaketools.make()
Example #58
0
def build():
    cmaketools.make()
Example #59
0
def build():
    shelltools.cd("build")
    cmaketools.make()
    pisitools.dosed("CMakeFiles/Export/share/cmake/lxqt/lxqt-targets-release.cmake", "lib64", "lib")
Example #60
0
def build():
    shelltools.cd("build_")
    cmaketools.make()