How to use the tmt.EclipseProject.configure function in tmt

To help you get started, we’ve selected a few tmt examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github thewca / tnoodle / scrambler-interface / tmtproject.py View on Github external
def configure(self):
        tmt.EclipseProject.configure(self)
        tmt.WinstoneServer.addPlugin(self)
github thewca / tnoodle / sq12phase / tmtproject.py View on Github external
def configure(self):
                tmt.EclipseProject.configure(self)
                self.main = 'cs.sq12phase.Search'
github thewca / tnoodle / timer / tmtproject.py View on Github external
def configure(self):
        tmt.EclipseProject.configure(self)
        tmt.WinstoneServer.addPlugin(self)

        self.unifiedHtmlFiles = {
            join(self.distDir, "tnt.html"): "http://localhost:2014/tnt/",
            join(self.distDir, "bld.html"): "http://localhost:2014/tnt/bld.html"
        }
github thewca / tnoodle / fivephase / tmtproject.py View on Github external
def configure(self):
		tmt.EclipseProject.configure(self)
		self.fivephase_tables = join(self.binResource, 'fivephase_tables')
github thewca / tnoodle / tnoodlejs / tmtproject.py View on Github external
def configure(self):
        tmt.EclipseProject.configure(self)
        tmt.WinstoneServer.addPlugin(self)
        self.scramblesProject = tmt.TmtProject.projects['scrambles']
        self.postProcessedDir = join(self.scramblesProject.name, 'postprocessed')
github thewca / tnoodle / threephase / tmtproject.py View on Github external
def configure(self):
                tmt.EclipseProject.configure(self)
                self.main = "cs.threephase.Main"
                self.threephase_tables = 'tpr_tables'
                self.CACHED_THREEPHASE_TABLES = join(self.name, 'CACHED_THREEPHASE_TABLES_DELETE_TO_RECREATE')
github thewca / tnoodle / webscrambles / tmtproject.py View on Github external
def configure(self):
        tmt.EclipseProject.configure(self)
        tmt.WinstoneServer.addPlugin(self)

        self.nonJavaResourceDeps |= tmt.glob(self.src, '.*html$', relativeTo=self.src)
github thewca / tnoodle / scrambles / tmtproject.py View on Github external
def configure(self):
        tmt.EclipseProject.configure(self)
        self.nonJavaSrcDeps |= tmt.glob(self.src, '.*png$', relativeTo=self.src)
        self.nonJavaSrcDeps.add('puzzle/puzzles')
        self.javaFilesToIgnore = tmt.glob(join(self.src, 'net/gnehzr/tnoodle/js/'), r'.*\.java')
        self.javaFilesToIgnore |= tmt.glob(join(self.src, 'net/gnehzr/tnoodle/jre/'), r'.*\.java')
github thewca / tnoodle / jracer / tmtproject.py View on Github external
def configure(self):
        tmt.EclipseProject.configure(self)