Skip to content

Commit

Permalink
prem
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwparent committed Sep 1, 2022
1 parent 621c42a commit 8d4ffc5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lib/spack/spack/detection/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,27 @@ def update_configuration(detected_packages, scope=None, buildable=True):

return all_new_specs

def find_windows_compiler_paths():

msvc_paths = list(winOs.WindowsOs.vs_install_paths)
msvc_cmake_paths = [
os.path.join(
path, "Common7", "IDE", "CommonExtensions", "Microsoft", "CMake", "CMake", "bin"
)
for path in msvc_paths
]
msvc_ninja_paths = [
os.path.join(path, "Common7", "IDE", "CommonExtensions", "Microsoft", "CMake", "Ninja")
for path in msvc_paths
]

def find_windows_cmake_paths():

pass


def find_windows_ninja_paths():
pass

def find_win32_additional_install_paths():
"""Not all programs on Windows live on the PATH
Expand Down

0 comments on commit 8d4ffc5

Please sign in to comment.