Skip to content

Commit

Permalink
fix typos (#117592)
Browse files Browse the repository at this point in the history
  • Loading branch information
CicadaCinema committed Jan 3, 2023
1 parent 6b9f1c2 commit 889e35b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dev/conductor/core/dart_test.yaml
@@ -1,6 +1,6 @@
# codesign_integration_test takes longer than the default timeout which is 30s
# since it has to clone both the engine and framework repos, and that test is running
# asynchronously. The async function is being awaited more than 30s which counts as inactivity
# The default timeout needs to be extended to accomodate codesign_integration_test
# The default timeout needs to be extended to accommodate codesign_integration_test

timeout: 5m
Expand Up @@ -8,15 +8,15 @@ set(PROJECT_NAME "{{projectName}}")
project(${PROJECT_NAME} LANGUAGES CXX)

# Invoke the build for native code shared with the other target platforms.
# This can be changed to accomodate different builds.
# This can be changed to accommodate different builds.
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared")

# List of absolute paths to libraries that should be bundled with the plugin.
# This list could contain prebuilt libraries, or libraries created by an
# external build triggered from this build file.
set({{projectName}}_bundled_libraries
# Defined in ../src/CMakeLists.txt.
# This can be changed to accomodate different builds.
# This can be changed to accommodate different builds.
$<TARGET_FILE:{{projectName}}>
PARENT_SCOPE
)
Expand Up @@ -9,15 +9,15 @@ set(PROJECT_NAME "{{projectName}}")
project(${PROJECT_NAME} LANGUAGES CXX)

# Invoke the build for native code shared with the other target platforms.
# This can be changed to accomodate different builds.
# This can be changed to accommodate different builds.
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared")

# List of absolute paths to libraries that should be bundled with the plugin.
# This list could contain prebuilt libraries, or libraries created by an
# external build triggered from this build file.
set({{projectName}}_bundled_libraries
# Defined in ../src/CMakeLists.txt.
# This can be changed to accomodate different builds.
# This can be changed to accommodate different builds.
$<TARGET_FILE:{{projectName}}>
PARENT_SCOPE
)

0 comments on commit 889e35b

Please sign in to comment.