boost-lutin/lutin_boost-include.py

36 lines
566 B
Python

#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
import os
def get_type():
return "LIBRARY"
def get_desc():
return "boost include 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_header_file(
'boost/boost/*',
recursive=True,
destination_path='boost')
return True