17 lines
561 B
Python
17 lines
561 B
Python
|
|
from SCons.Script import *
|
|
|
|
def cook(env: Environment, git_ref: str = 'master') -> dict:
|
|
repo = env.GitBranch(repo_name = 'fmt', remote_url = 'https://github.com/fmtlib/fmt.git', git_ref = git_ref)
|
|
checkout_root = repo['checkout_root']
|
|
build_result = env.CMakeProject(project_root=checkout_root, generate_args = ['-DFMT_TEST=OFF'])
|
|
|
|
lib_name = {
|
|
'debug': 'fmtd'
|
|
}.get(env['BUILD_TYPE'], 'fmt')
|
|
return {
|
|
'LIBPATH': build_result['LIBPATH'],
|
|
'CPPPATH': build_result['CPPPATH'],
|
|
'LIBS': [lib_name]
|
|
}
|