public: move git commit and branch private to libpublic
This commit is contained in:
parent
35dc072b26
commit
3532a77643
1 changed files with 2 additions and 3 deletions
|
@ -67,8 +67,6 @@ def options(opt):
|
||||||
def configure(conf):
|
def configure(conf):
|
||||||
# private to libpublic
|
# private to libpublic
|
||||||
conf.load('gitversion')
|
conf.load('gitversion')
|
||||||
conf.define('XASH_BUILD_COMMIT', conf.env.GIT_VERSION if conf.env.GIT_VERSION else 'unknown-commit')
|
|
||||||
conf.define('XASH_BUILD_BRANCH', conf.env.GIT_BRANCH if conf.env.GIT_BRANCH else 'unknown-branch')
|
|
||||||
conf.env.VALIDATE_TARGET = conf.options.VALIDATE_TARGET
|
conf.env.VALIDATE_TARGET = conf.options.VALIDATE_TARGET
|
||||||
|
|
||||||
# need to expose it for everyone using libpublic headers
|
# need to expose it for everyone using libpublic headers
|
||||||
|
@ -122,7 +120,8 @@ def build(bld):
|
||||||
|
|
||||||
bld.stlib(source = bld.path.ant_glob('*.c'),
|
bld.stlib(source = bld.path.ant_glob('*.c'),
|
||||||
target = 'public',
|
target = 'public',
|
||||||
use = 'sdk_includes werror')
|
use = 'sdk_includes werror',
|
||||||
|
defines = ['XASH_BUILD_COMMIT=\"%s\"' % bld.env.GIT_VERSION, 'XASH_BUILD_BRANCH=\"%s\"' % bld.env.GIT_BRANCH])
|
||||||
|
|
||||||
if bld.env.TESTS:
|
if bld.env.TESTS:
|
||||||
if bld.env.VALIDATE_TARGET:
|
if bld.env.VALIDATE_TARGET:
|
||||||
|
|
Loading…
Add table
Reference in a new issue