Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for prebuilt (0.26 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinary.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.nativeplatform.BuildType;
    import org.gradle.nativeplatform.Flavor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinary.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.nativeplatform.BuildType;
    import org.gradle.nativeplatform.Flavor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/settings.gradle

    rootProject.name = 'prebuilt'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

                    def fileArgs = [ sourceIdx: sourceIdx, offset: (prebuiltLib+1)*rootProject.sourceFiles ]
                    generateWithTemplate(destDir, "prebuilt/lib${prebuiltLib}/include/header${sourceIdx}.h", "native-monolithic/src/prebuilt.h", fileArgs)
                }
            }
        }
    
        void generateCommonLibrarySource() {
            rootProject.sourceFiles.times { sourceIdx ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-monolithic/build.gradle

    subprojects {
        apply from: rootProject.file("common.gradle")
        apply from: rootProject.file("components.gradle")
    }
    
    apply from: file("common.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 191 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/util/README.txt

    To demonstrate the integration with prebuilt libraries available on the file system, this 'util' library must first be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 195 bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-monolithic/components.gradle

                    // TODO: Use dependency graph builder to created a layered native build
                    <% prebuiltLibraries.times { %>
                    // TODO: Use a different linkage
                    lib project: ':', library: "prebuilt$it", linkage: 'api'
                    <% } %>
    
                    lib project: ':', library: "commonHeaders", linkage: 'api'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/README.md

    ## CUnit Sample Limitations
    
    Currently, the Gradle model for Platform does not allow us to differentiate between different c-runtime, ABI or other binary variants.
    This means that it is not possible to differentiate between a prebuilt library binary compatible with VS2010 vs VS2013.
    
    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 486 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/README.md

    ## GoogleTest Sample Limitations
    
    Currently, the Gradle model for Platform does not allow us to differentiate between different c-runtime, ABI or other binary variants.
    This means that it is not possible to differentiate between a prebuilt library binary compatible with VS2010 vs VS2013.
    
    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  10. misc/go_android_exec/README

    To run the standard library tests, enable Cgo and use an appropriate
    C compiler from the Android NDK. For example,
    
    	CGO_ENABLED=1 \
    	GOOS=android \
    	GOARCH=arm64 \
    	CC_FOR_TARGET=$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang \
    	./all.bash
    
    To run tests on the Android device, add the bin directory to PATH so the
    go tool can find the go_android_$GOARCH_exec wrapper generated by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 14:45:55 UTC 2023
    - 732 bytes
    - Viewed (0)
Back to top