Fix entry point in the coverage sample
This commit is contained in:
committed by
Nikolay Igotti
parent
0d8cbb7708
commit
feabe3b271
@@ -53,6 +53,7 @@ task buildSamplesWithPlatformLibs() {
|
|||||||
dependsOn ':objc:assemble'
|
dependsOn ':objc:assemble'
|
||||||
dependsOn ':opengl:assemble'
|
dependsOn ':opengl:assemble'
|
||||||
dependsOn ':uikit:assemble'
|
dependsOn ':uikit:assemble'
|
||||||
|
dependsOn ':coverage:assemble'
|
||||||
}
|
}
|
||||||
|
|
||||||
if (MPPTools.isWindows()) {
|
if (MPPTools.isWindows()) {
|
||||||
|
|||||||
@@ -21,9 +21,7 @@ kotlin {
|
|||||||
|
|
||||||
macosX64("macos") {
|
macosX64("macos") {
|
||||||
binaries {
|
binaries {
|
||||||
executable(listOf(DEBUG)) {
|
executable(listOf(DEBUG))
|
||||||
entryPoint = "coverage.main"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
binaries.getExecutable("test", DEBUG).apply {
|
binaries.getExecutable("test", DEBUG).apply {
|
||||||
freeCompilerArgs = mutableListOf(
|
freeCompilerArgs = mutableListOf(
|
||||||
|
|||||||
@@ -17,7 +17,10 @@ pluginManagement {
|
|||||||
enableFeaturePreview('GRADLE_METADATA')
|
enableFeaturePreview('GRADLE_METADATA')
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following projects are only available for certain platforms:
|
* The following projects are only available for certain platforms.
|
||||||
|
*
|
||||||
|
* IMPORTANT: If a new sample doesn't include interop with third-party libraries,
|
||||||
|
* add it into the 'buildSamplesWithPlatfromLibs' task in the root build.gradle.
|
||||||
*/
|
*/
|
||||||
if (MPPTools.isMacos() || MPPTools.isLinux() || MPPTools.isWindows()) {
|
if (MPPTools.isMacos() || MPPTools.isLinux() || MPPTools.isWindows()) {
|
||||||
include ':csvparser'
|
include ':csvparser'
|
||||||
|
|||||||
Reference in New Issue
Block a user