<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- python -*-
# ex: set syntax=python:
#
import os.path

#############################################################################
###### PROJECT CONFIGURATION

projectPath = os.path.join(os.getcwd(), '..')

__project = {}
__project["number"] = 7
__project["name"] = "libLAS"
__project["url"] = "http://liblas.org/"
__project["hgUrl"] = "http://hg.liblas.org/"
__project["hgBranch"] = "main"
#__project["hgBranchStable"] = "branches/1.2" # TODO: to be fixed

#############################################################################
###### BOT CONFIGURATION

__bot = {}

# General project information
__bot["name"] = "liblas"
__bot["dir"] = projectPath
__bot["url"] = "http://buildbot.osgeo.org"

# Buildmaster ports are calculated from project number
__bot["slavePort"] = 1500 + __project['number']
__bot["httpPort"]  = 8500 + __project['number']

# Nightly Scheduler time settings
__bot["nightlyHours"] = [ 2 ]
__bot["nightlyMinutes"] = 0

#############################################################################
###### COMMON CONFIGURATION OBJECT

config = {}
config['project'] = __project
config['bot'] = __bot
config['quick'] = False # controls if -quick builders are enabled or not

#############################################################################
###### COMMIN SETTINGS FOR COMPILATION 

autoconfOptions = []

</pre></body></html>