Examples of VisualStudioInstall


Examples of org.gradle.nativeplatform.toolchain.internal.msvcpp.VisualStudioInstall

        // Search in the standard installation locations
        VisualStudioLocator vsLocator = new DefaultVisualStudioLocator(targetPlatform.getOperatingSystem().getInternalOs(), NativeServices.getInstance().get(WindowsRegistry.class), NativeServices.getInstance().get(SystemInfo.class));

        VisualStudioLocator.SearchResult searchResult = vsLocator.locateVisualStudioInstalls(null);
        if (searchResult.isAvailable()) {
            VisualStudioInstall install = searchResult.getVisualStudio();
            return new InstalledVisualCpp().withInstall(install, targetPlatform);
        }

        return new UnavailableToolChain("visual c++");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.