Skip to content
Permalink
b5004ca222
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
66 lines (48 sloc) 2.48 KB
import os
import glob
def build_bfs():
root_bfs_dir = os.path.normpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
print("Root BFS directory at:", root_bfs_dir)
build_dir = os.path.join(root_bfs_dir, "build")
print("Build directory at:", build_dir)
auto_build_dir = os.path.join(build_dir, "auto_build")
if not os.path.exists(auto_build_dir):
os.mkdir(auto_build_dir)
print("Creating auto build directory...")
print("Auto build directory at:", auto_build_dir)
print("Changing direcory to auto build dir...")
prev_cur_dir = os.getcwd()
os.chdir(auto_build_dir)
cmake_bin = None
vs_cmake_path_pattern = "C:\\PROGRAM FILES (X86)\\MICROSOFT VISUAL STUDIO\\*\\*\\COMMON*\\IDE\\COMMONEXTENSIONS\\MICROSOFT\\CMAKE\\CMake\\bin\\cmake.exe"
print("Searching for cmake installation in visual studio install location at %s" % vs_cmake_path_pattern)
possible_paths = glob.glob(vs_cmake_path_pattern)
if len(possible_paths) > 0:
cmake_bin = possible_paths[0]
if cmake_bin is None:
sys_cmake_path_pattern = "C:\\Program Files (x86)\\CMake*\\bin\\cmake.exe"
print("cmake bin\\ not found, searching for system installation at %s" % sys_cmake_bin_directory)
possible_paths = glob.glob(sys_cmake_path_pattern)
if len(possible_paths) > 0:
cmake_bin = possible_paths[0]
if cmake_bin is None:
print("No cmake directory found, try installing it through visual studio or through your system and retrying!")
quit()
else:
print("Cmake binary location found at: %s" % cmake_bin)
cmake_installation = "C:\\PROGRAM FILES (X86)\\MICROSOFT VISUAL STUDIO\\2019\\COMMUNITY\\COMMON7\\IDE\\COMMONEXTENSIONS\\MICROSOFT\\CMAKE\\CMake\\bin\\cmake.exe"
clean_command = "\"%s\" --clean ..\\.." % cmake_bin
build_command = "\"%s\" --build ." % cmake_bin
def start_build_program(program):
if not isinstance(program, str):
raise ValueError("Argument passed to start_program_sync() should be a string")
print("\n======> Running command: %s <======" % program)
return os.system("CMD /c \"%s\"" % program)
# While located in the bfs\build\auto_build directory...
# cmake --clean ..\..
start_build_program(clean_command)
# cmake --build .
start_build_program(build_command)
os.chdir(prev_cur_dir)
if __name__ == "__main__":
build_bfs()