boost-lutin/lutin_boost-context.py

40 lines
560 B
Python
Raw Normal View History

2018-01-12 21:48:58 +01:00
#!/usr/bin/python
2021-10-05 19:07:33 +02:00
import realog.debug as debug
2018-01-12 21:48:58 +01:00
import lutin.tools as tools
import os
def get_type():
return "LIBRARY"
def get_desc():
return "boost:boost-context library"
#def get_licence():
# return "UNKNOW"
def get_compagny_type():
return "org"
def get_compagny_name():
return "boost"
#def get_maintainer():
# return "UNKNOW"
def get_version():
return "version.txt"
def configure(target, my_module):
my_module.compile_version('c++', 2011)
my_module.add_depend([
'z',
'm',
'cxx',
'boost-include',
])
return True