File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/ ) , and this
6
6
project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
7
7
8
+ ## [ Unreleased]
9
+ ### Changed
10
+ - Add ` watchosX64 ` target (#123 )
11
+
8
12
## [ 0.4.0] - 2022-01-13
9
13
### Changed
10
14
- Upgrade to Kotlin 1.6.10 (#122 )
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ kotlin {
41
41
watchosArm32()
42
42
watchosArm64()
43
43
watchosX86()
44
+ watchosX64()
44
45
watchosSimulatorArm64()
45
46
tvosArm64()
46
47
tvosX64()
@@ -110,6 +111,8 @@ kotlin {
110
111
val watchosArm32Test by getting { kotlin.srcDir(" src/appleTest/kotlin" ) }
111
112
val watchosArm64Main by getting { kotlin.srcDirs(appleMain64SourceDirs) }
112
113
val watchosArm64Test by getting { kotlin.srcDir(" src/appleTest/kotlin" ) }
114
+ val watchosX64Main by getting { kotlin.srcDirs(appleMain64SourceDirs) }
115
+ val watchosX64Test by getting { kotlin.srcDir(" src/appleTest/kotlin" ) }
113
116
val watchosX86Main by getting { kotlin.srcDirs(appleMain32SourceDirs) }
114
117
val watchosX86Test by getting { kotlin.srcDir(" src/appleTest/kotlin" ) }
115
118
val watchosSimulatorArm64Main by getting { kotlin.srcDirs(appleMain64SourceDirs) }
You can’t perform that action at this time.
0 commit comments