Skip to content

Commit 78b72cd

Browse files
committed
build: fix typo in build system
This fixes a typo in the build system which is important because it fixes the dependency tracking and the output location for the swift doc that is generated for the swift SDK overlay.
1 parent 5e8789e commit 78b72cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/modules/SwiftSupport.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function(add_swift_library library)
5454
add_custom_command(OUTPUT
5555
${ASL_OUTPUT}
5656
${ASL_MODULE_PATH}
57-
${moodule_directory}/${ASL_MODULE_NAME}.swiftdoc
57+
${module_directory}/${ASL_MODULE_NAME}.swiftdoc
5858
DEPENDS
5959
${ASL_SOURCES}
6060
COMMAND
@@ -65,5 +65,5 @@ function(add_swift_library library)
6565
DEPENDS
6666
${ASL_OUTPUT}
6767
${ASL_MODULE_PATH}
68-
${moodule_directory}/${ASL_MODULE_NAME}.swiftdoc)
68+
${module_directory}/${ASL_MODULE_NAME}.swiftdoc)
6969
endfunction()

0 commit comments

Comments
 (0)