File tree 3 files changed +5
-5
lines changed
packages/flutter_tools/templates/plugin_ffi
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# codesign_integration_test takes longer than the default timeout which is 30s
2
2
# since it has to clone both the engine and framework repos, and that test is running
3
3
# asynchronously. The async function is being awaited more than 30s which counts as inactivity
4
- # The default timeout needs to be extended to accomodate codesign_integration_test
4
+ # The default timeout needs to be extended to accommodate codesign_integration_test
5
5
6
6
timeout : 5m
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ set(PROJECT_NAME "{{projectName}}")
8
8
project(${PROJECT_NAME} LANGUAGES CXX)
9
9
10
10
# Invoke the build for native code shared with the other target platforms.
11
- # This can be changed to accomodate different builds.
11
+ # This can be changed to accommodate different builds.
12
12
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared")
13
13
14
14
# List of absolute paths to libraries that should be bundled with the plugin.
15
15
# This list could contain prebuilt libraries, or libraries created by an
16
16
# external build triggered from this build file.
17
17
set({{projectName}}_bundled_libraries
18
18
# Defined in ../src/CMakeLists.txt.
19
- # This can be changed to accomodate different builds.
19
+ # This can be changed to accommodate different builds.
20
20
$<TARGET_FILE:{{projectName}}>
21
21
PARENT_SCOPE
22
22
)
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ set(PROJECT_NAME "{{projectName}}")
9
9
project(${PROJECT_NAME} LANGUAGES CXX)
10
10
11
11
# Invoke the build for native code shared with the other target platforms.
12
- # This can be changed to accomodate different builds.
12
+ # This can be changed to accommodate different builds.
13
13
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared")
14
14
15
15
# List of absolute paths to libraries that should be bundled with the plugin.
16
16
# This list could contain prebuilt libraries, or libraries created by an
17
17
# external build triggered from this build file.
18
18
set({{projectName}}_bundled_libraries
19
19
# Defined in ../src/CMakeLists.txt.
20
- # This can be changed to accomodate different builds.
20
+ # This can be changed to accommodate different builds.
21
21
$<TARGET_FILE:{{projectName}}>
22
22
PARENT_SCOPE
23
23
)
You can’t perform that action at this time.
0 commit comments