Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLibPath (0.09 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

            this.architecture = Architectures.forInput(architecture);
        }
    
        File getBinPath(File basePath) {
            return new File(basePath, binPath);
        }
    
        File getLibPath(File basePath) {
            return new File(basePath, libPath);
        }
    
        File getCompilerPath(File basePath) {
            return new File(getBinPath(basePath), COMPILER_FILENAME);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            platformVisualCpp.compilerExecutable == new File(expectedBuilder.getBinPath(vcDir), "cl.exe")
            platformVisualCpp.libDirs == [expectedBuilder.getLibPath(vcDir)]
            platformVisualCpp.assemblerExecutable == new File(expectedBuilder.getBinPath(vcDir), expectedBuilder.asmFilename)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top