File tree 3 files changed +34
-2
lines changed
sbt-crossproject/src/main/scala/sbtcrossproject
sbt-crossproject-test/src/sbt-test/new-api/detection
3 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -64,3 +64,28 @@ lazy val fullCross =
64
64
doCheckBase(crossProjectBaseDirectory.value, file(" fullCross" ))
65
65
}
66
66
)
67
+
68
+ lazy val nonDefaultBase =
69
+ crossProject(JVMPlatform , NativePlatform , JSPlatform )
70
+ .in(file(" non-default-base" ))
71
+ .jvmSettings(
72
+ check := {
73
+ doCheckPlatform(crossProjectPlatform.value, " jvm" )
74
+ doCheckType(crossProjectCrossType.value, CrossType .Full )
75
+ doCheckBase(crossProjectBaseDirectory.value, file(" non-default-base" ))
76
+ }
77
+ )
78
+ .jsSettings(
79
+ check := {
80
+ doCheckPlatform(crossProjectPlatform.value, " js" )
81
+ doCheckType(crossProjectCrossType.value, CrossType .Full )
82
+ doCheckBase(crossProjectBaseDirectory.value, file(" non-default-base" ))
83
+ }
84
+ )
85
+ .nativeSettings(
86
+ check := {
87
+ doCheckPlatform(crossProjectPlatform.value, " native" )
88
+ doCheckType(crossProjectCrossType.value, CrossType .Full )
89
+ doCheckBase(crossProjectBaseDirectory.value, file(" non-default-base" ))
90
+ }
91
+ )
Original file line number Diff line number Diff line change 4
4
> fullCrossJVM/check
5
5
> fullCrossJS/check
6
6
> fullCrossNative/check
7
+ > nonDefaultBaseJVM/check
8
+ > nonDefaultBaseJS/check
9
+ > nonDefaultBaseNative/check
Original file line number Diff line number Diff line change @@ -84,8 +84,12 @@ final class CrossProject private[sbtcrossproject] (
84
84
configurePlatforms(platforms : _* )(_.enablePlugins(plugins : _* ))
85
85
86
86
def in (dir : File ): CrossProject =
87
- mapProjectsByPlatform(
88
- (platform, project) => project.in(crossType.platformDir(dir, platform)))
87
+ settings(
88
+ CrossPlugin .autoImport.crossProjectBaseDirectory :=
89
+ IO .resolve((LocalRootProject / baseDirectory).value, dir)
90
+ ).mapProjectsByPlatform { (platform, project) =>
91
+ project.in(crossType.platformDir(dir, platform))
92
+ }
89
93
90
94
def overrideConfigs (cs : Configuration * ): CrossProject =
91
95
transform(_.overrideConfigs(cs : _* ))
You can’t perform that action at this time.
0 commit comments