3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix reset order for #4533

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-06-19 16:07:45 -07:00
parent 1204671595
commit 274323b818
2 changed files with 19 additions and 11 deletions

View file

@ -917,20 +917,23 @@ def is_CXX_clangpp():
return is_clang_in_gpp_form(CXX)
return is_compiler(CXX, 'clang++')
def get_files_with_ext(path, ext):
return filter(lambda f: f.endswith(ext), os.listdir(path))
def get_cpp_files(path):
return filter(lambda f: f.endswith('.cpp'), os.listdir(path))
return get_files_with_ext(path,'.cpp')
def get_c_files(path):
return filter(lambda f: f.endswith('.c'), os.listdir(path))
return get_files_with_ext(path,'.c')
def get_cs_files(path):
return filter(lambda f: f.endswith('.cs'), os.listdir(path))
return get_files_with_ext(path,'.cs')
def get_java_files(path):
return filter(lambda f: f.endswith('.java'), os.listdir(path))
return get_files_with_ext(path,'.java')
def get_ml_files(path):
return filter(lambda f: f.endswith('.ml'), os.listdir(path))
return get_files_with_ext(path,'.ml')
def find_all_deps(name, deps):
new_deps = []
@ -2273,6 +2276,10 @@ def add_lib(name, deps=[], path=None, includes2install=[]):
c = LibComponent(name, path, deps, includes2install)
reg_component(name, c)
def add_clib(name, deps=[], path=None, includes2install=[]):
c = CLibComponent(name, path, deps, includes2install)
reg_component(name, c)
def add_hlib(name, path=None, includes2install=[]):
c = HLibComponent(name, path, includes2install)
reg_component(name, c)