2021-06-17 13:03:38 +02:00
|
|
|
import os
|
|
|
|
import platform
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def is_active():
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def get_name():
|
|
|
|
return "trantor"
|
|
|
|
|
|
|
|
|
|
|
|
def can_build():
|
2021-06-17 14:43:29 +02:00
|
|
|
return False
|
2021-06-17 13:03:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_opts():
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_flags():
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
2021-06-17 14:43:29 +02:00
|
|
|
#env.Append(CXX=["-std=c++17"])
|
|
|
|
|
2021-06-17 13:03:38 +02:00
|
|
|
env.Prepend(CPPPATH=["#modules/trantor"])
|
|
|
|
env.Prepend(CPPPATH=["#modules/trantor/trantor/net"])
|
|
|
|
env.Prepend(CPPPATH=["#modules/trantor/trantor/net/inner"])
|
|
|
|
env.Prepend(CPPPATH=["#modules/trantor/trantor/utils"])
|
|
|
|
|
|
|
|
|