mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
27 lines
239 B
Python
27 lines
239 B
Python
|
import os
|
||
|
import platform
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def is_active():
|
||
|
return True
|
||
|
|
||
|
|
||
|
def get_name():
|
||
|
return "users"
|
||
|
|
||
|
|
||
|
def can_build():
|
||
|
return True
|
||
|
|
||
|
|
||
|
def get_opts():
|
||
|
return []
|
||
|
|
||
|
def get_flags():
|
||
|
|
||
|
return []
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|