Skip to content

Commit 1983217

Browse files
matiasilvakilograham
authored andcommitted
Improve comments in CMakeLists.txt files
1 parent 8f68cef commit 1983217

File tree

32 files changed

+40
-40
lines changed

32 files changed

+40
-40
lines changed

blink/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(blink
22
blink.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(blink pico_stdlib)
77

88
# create map/bin/hex file etc.

clocks/detached_clk_peri/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ add_executable(clocks_detached_clk_peri
22
detached_clk_peri.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(clocks_detached_clk_peri pico_stdlib)
77

88
# create map/bin/hex file etc.
99
pico_add_extra_outputs(clocks_detached_clk_peri)
1010

1111
# add url via pico_set_program_url
12-
example_auto_set_url(clocks_detached_clk_peri)
12+
example_auto_set_url(clocks_detached_clk_peri)

clocks/hello_48MHz/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(hello_48MHz
22
hello_48MHz.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_48MHz pico_stdlib hardware_clocks)
77

88
# create map/bin/hex file etc.

clocks/hello_gpout/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ add_executable(hello_gpout
22
hello_gpout.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_gpout pico_stdlib)
77

88
# create map/bin/hex file etc.
99
pico_add_extra_outputs(hello_gpout)
1010

1111
# add url via pico_set_program_url
12-
example_auto_set_url(hello_gpout)
12+
example_auto_set_url(hello_gpout)

clocks/hello_resus/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ add_executable(hello_resus
22
hello_resus.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_resus pico_stdlib)
77

88
# create map/bin/hex file etc.
99
pico_add_extra_outputs(hello_resus)
1010

1111
# add url via pico_set_program_url
12-
example_auto_set_url(hello_resus)
12+
example_auto_set_url(hello_resus)

divider/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ add_executable(hello_divider
22
hello_divider.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_divider pico_stdlib)
77

88
# create map/bin/hex file etc.
99
pico_add_extra_outputs(hello_divider)
1010

1111
# add url via pico_set_program_url
12-
example_auto_set_url(hello_divider)
12+
example_auto_set_url(hello_divider)

gpio/hello_7segment/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ add_executable(hello_7segment
22
hello_7segment.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_7segment pico_stdlib)
77

88
# create map/bin/hex file etc.
99
pico_add_extra_outputs(hello_7segment)
1010

1111
# add url via pico_set_program_url
12-
example_auto_set_url(hello_7segment)
12+
example_auto_set_url(hello_7segment)

gpio/hello_gpio_irq/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(hello_gpio_irq
22
hello_gpio_irq.c
33
)
44

5-
# Pull in our pico_stdlib which pulls in commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_gpio_irq pico_stdlib)
77

88
# create map/bin/hex file etc.

hello_world/serial/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(hello_serial
22
hello_serial.c
33
)
44

5-
# Pull in our pico_stdlib which aggregates commonly used features
5+
# pull in common dependencies
66
target_link_libraries(hello_serial pico_stdlib)
77

88
# create map/bin/hex/uf2 file etc.

hello_world/usb/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ if (TARGET tinyusb_device)
33
hello_usb.c
44
)
55

6-
# Pull in our pico_stdlib which aggregates commonly used features
6+
# pull in common dependencies
77
target_link_libraries(hello_usb pico_stdlib)
88

99
# enable usb output, disable uart output

0 commit comments

Comments
 (0)