Skip to content

Commit bb0956d

Browse files
committed
add iOS demo
1 parent 21f1d12 commit bb0956d

File tree

12 files changed

+552
-0
lines changed

12 files changed

+552
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ build/
1313
!**/src/main/**/build/
1414
!**/src/test/**/build/
1515

16+
17+
### Xcode ###
18+
19+
**/*.xcodeproj/*
20+
!**/*.xcodeproj/project.pbxproj
21+
!**/*.xcodeproj/xcshareddata/
22+
!**/*.xcodeproj/project.xcworkspace/
23+
!**/*.xcworkspace/contents.xcworkspacedata
24+
**/xcshareddata/WorkspaceSettings.xcsettings
25+
1626
### IntelliJ IDEA ###
1727
# User-specific stuff
1828
.idea/**/workspace.xml

demo/build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ kotlin {
2222
}
2323
}
2424

25+
listOf(
26+
iosArm64(),
27+
iosSimulatorArm64(),
28+
iosX64(),
29+
).forEach {
30+
it.binaries.framework {
31+
baseName = "KotliteInterpreterDemoShared"
32+
isStatic = true
33+
}
34+
}
35+
2536
sourceSets {
2637
val commonMain by getting {
2738
dependencies {

0 commit comments

Comments
 (0)