buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.6.0' } } repositories { google() jcenter() } apply plugin: 'com.android.application' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) } android { /******************************************************* * The following variables: * - androidBuildToolsVersion, * - androidCompileSdkVersion * - qt5AndroidDir - holds the path to qt android files * needed to build any Qt application * on Android. * * are defined in gradle.properties file. This file is * updated by QtCreator and androiddeployqt tools. * Changing them manually might break the compilation! *******************************************************/ compileSdkVersion androidCompileSdkVersion.toInteger() buildToolsVersion '28.0.3' sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java'] aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl'] res.srcDirs = [qt5AndroidDir + '/res', 'res'] resources.srcDirs = ['resources'] renderscript.srcDirs = ['src'] assets.srcDirs = ['assets'] jniLibs.srcDirs = ['libs'] } } lintOptions { abortOnError false } // Do not compress Qt binary resources file aaptOptions { noCompress 'rcc' } defaultConfig { resConfig "en" minSdkVersion = qtMinSdkVersion targetSdkVersion = qtTargetSdkVersion } } n> Vendor branches of https://github.com/llvm/llvm-project.git
summaryrefslogtreecommitdiffstats
path: root/pstl
Commit message (Expand)AuthorAgeFilesLines
* Revert "[cmake] Use `CMAKE_INSTALL_LIBDIR` too"John Ericson2022-08-181-2/+2
* [cmake] Use `CMAKE_INSTALL_LIBDIR` tooJohn Ericson2022-08-181-2/+2
* Bump the trunk major version to 16llvmorg-16-initTom Stellard2022-07-263-7/+7
* [libc++] Use _LIBCPP_ASSERT by default for _PSTL_ASSERTionsNikolas Klauser2022-05-201-1/+6
* Bump the trunk major version to 15upstream/llvmorg-15-initllvmorg-15-initTom Stellard2022-02-013-7/+7
* [libc++][pstl][NFC] Remove usage of std::result_of from Parallel STLRuslan Arutyunyan2022-01-311-2/+2
* [libc++][pstl] Implement tag dispatching mechanism for Parallel STLRuslan Arutyunyan2022-01-2823-2349/+2246
* [cmake] Make include(GNUInstallDirs) always below project(..)John Ericson2022-01-201-2/+3
* [pstl][cmake] Use `GNUInstallDirs` to support custom installation dirsJohn Ericson2022-01-171-2/+4
* Revert "[cmake] Use `GNUInstallDirs` to support custom installation dirs."John Ericson2022-01-161-4/+2
* [cmake] Use `GNUInstallDirs` to support custom installation dirs.John Ericson2022-01-161-2/+4
* Revert "[cmake] Use `GNUInstallDirs` to support custom installation dirs."John Ericson2022-01-151-4/+2
* [cmake] Use `GNUInstallDirs` to support custom installation dirs.John Ericson2022-01-151-2/+4
* [pstl] Fix incorrect usage of std::invoke_resultRuslan Arutyunyan2021-11-261-4/+4
* [pstl] A hot fix for a reduction parallel pattern of OpenMP backendMikhail Dvorskiy2021-10-271-0/+5
* [pstl] A hot compilation fix for MacOS, OpenMP backend; + full qualified name...Mikhail Dvorskiy2021-10-275-19/+25
* [pstl] Initial implementation of OpenMP backend, on behalf of Christopher Nel...Mikhail Dvorskiy2021-10-1518-5/+1056
* [libc++] Remove test-suite annotations for unsupported Clang versionsLouis Dionne2021-08-201-2/+0
* Bump the trunk major version to 14upstream/llvmorg-14-initllvmorg-14-initTom Stellard2021-07-273-7/+7
* [pstl] Workaround more errors in the test suiteLouis Dionne2021-05-263-6/+3
* [pstl] Fix -Wundef errors in the test suiteLouis Dionne2021-05-2643-126/+148
* [pstl] Use logical operator for loop condition in testszoecarver2021-05-132-2/+2
* Rename top-level LICENSE.txt files to LICENSE.TXTLeonard Chan2021-03-101-0/+0
* [pstl] A hot fix forMikhail Dvorskiy2021-03-041-1/+1
* [pstl] Fix broken policy_traits and clean up unused codeLouis Dionne2021-03-031-82/+21
* [pstl] Iterator types renaming: ForwardIterator -> RandomAccessIterator; for ...Mikhail Dvorskiy2021-02-135-677/+719