Added recipe for rectpack2D.
This commit is contained in:
parent
b45fec7561
commit
a7c736de56
20
recipes/rectpack2D/recipe.py
Normal file
20
recipes/rectpack2D/recipe.py
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
import os
|
||||
from SCons.Script import *
|
||||
|
||||
_REPO_NAME = 'rectpack2D'
|
||||
_REPO_URL = 'https://github.com/TeamHypersomnia/rectpack2D.git'
|
||||
|
||||
|
||||
def versions(env: Environment, update: bool = False):
|
||||
return [(0, 0, 0)]
|
||||
|
||||
def dependencies(env: Environment, version) -> 'dict':
|
||||
return {}
|
||||
|
||||
def cook(env: Environment, version) -> dict:
|
||||
repo = env.GitBranch(repo_name = _REPO_NAME, remote_url = _REPO_URL, git_ref = 'master')
|
||||
checkout_root = repo['checkout_root']
|
||||
return {
|
||||
'CPPPATH': [os.path.join(checkout_root, 'src')]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user