mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
35 lines
505 B
Python
35 lines
505 B
Python
import os
|
|
import platform
|
|
import sys
|
|
|
|
|
|
def is_active():
|
|
return True
|
|
|
|
|
|
def get_name():
|
|
return "trantor"
|
|
|
|
|
|
def can_build():
|
|
return False
|
|
|
|
|
|
def get_opts():
|
|
return []
|
|
|
|
def get_flags():
|
|
|
|
return []
|
|
|
|
|
|
def configure(env):
|
|
#env.Append(CXX=["-std=c++17"])
|
|
|
|
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"])
|
|
|
|
|