Skip to content

Commit 3de1f11

Browse files
committed
cmake: Runs -> Tasks
1 parent ab4c94d commit 3de1f11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmake/modules/myci.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,7 @@ function(myci_declare_application name)
12291229
# declare run-<name> target
12301230
add_custom_target(run-${name})
12311231
add_dependencies(run-${name} ${name})
1232-
set_target_properties(run-${name} PROPERTIES FOLDER "Runs")
1232+
set_target_properties(run-${name} PROPERTIES FOLDER "Tasks")
12331233

12341234
add_custom_command(TARGET run-${name}
12351235
POST_BUILD
@@ -1263,7 +1263,7 @@ function(myci_declare_test)
12631263
endif()
12641264

12651265
if(NOT TARGET ${arg_RUN_TARGET})
1266-
message(FATAL_ERROR "the target ${arg_RUN_TARGET} does not exist")
1266+
message(FATAL_ERROR "myci_declare_test(): the target ${arg_RUN_TARGET} does not exist")
12671267
endif()
12681268

12691269
add_dependencies(test ${arg_RUN_TARGET})

0 commit comments

Comments
 (0)