70 lines
1.4 KiB
Python
70 lines
1.4 KiB
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_version():
|
|
return "version.txt"
|
|
|
|
def configure(target, my_module):
|
|
my_module.compile_version('c++', 2011)
|
|
my_module.add_depend([
|
|
'boost-include',
|
|
'boost-filesystem',
|
|
'boost-fiber',
|
|
'boost-regex',
|
|
'boost-graph',
|
|
'boost-iostreams',
|
|
'boost-json',
|
|
'boost-system',
|
|
'boost-locale',
|
|
'boost-log',
|
|
'boost-log-setup',
|
|
'boost-math-c99',
|
|
'boost-math-c99f',
|
|
'boost-math-c99l',
|
|
'boost-math-tr1',
|
|
'boost-math-tr1f',
|
|
'boost-math-tr1l',
|
|
'boost-nowide',
|
|
'boost-program-options',
|
|
'boost-python39',
|
|
'boost-numpy39',
|
|
'boost-random',
|
|
'boost-serialization',
|
|
'boost-wserialization',
|
|
'boost-stacktrace-noop',
|
|
'boost-stacktrace-addr2line',
|
|
'boost-stacktrace-basic',
|
|
'boost-prg-exec-monitor',
|
|
'boost-unit-test-framework',
|
|
'boost-timer',
|
|
'boost-type-erasure',
|
|
'boost-wave',
|
|
'boost-atomic',
|
|
'boost-chrono',
|
|
'boost-container',
|
|
'boost-context',
|
|
'boost-contract',
|
|
'boost-thread',
|
|
'boost-coroutine',
|
|
'boost-date-time',
|
|
])
|
|
|
|
|