Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NativeSpecVisualStudioTargetBinary (0.34 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    import java.util.function.Consumer;
    
    public class NativeSpecVisualStudioTargetBinary implements VisualStudioTargetBinary {
        private final NativeBinarySpecInternal binary;
    
        public NativeSpecVisualStudioTargetBinary(NativeBinarySpec binary) {
            this.binary = (NativeBinarySpecInternal) binary;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            getFlavor() >> flavor
            getComponent() >> lib
            getTargetPlatform() >> platform
            getNamingScheme() >> binaryNamingScheme
        }
        def targetBinary = new NativeSpecVisualStudioTargetBinary(exeBinary)
        def cppCompiler = Mock(PreprocessingTool)
        def cCompiler = Mock(PreprocessingTool)
        def rcCompiler = Mock(PreprocessingTool)
    
        def "tasks reflect binary tasks for executables"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top