Skip to content

Commit 8f93bbc

Browse files
matiasilvakilograham
matiasilva
authored andcommitted
Remove old line from CMakeLists
1 parent 34c3ade commit 8f93bbc

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

i2c/bus_scan/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(i2c_bus_scan
22
bus_scan.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(i2c_bus_scan pico_stdlib hardware_i2c)
77

88
# create map/bin/hex file etc.

i2c/lcd_1602_i2c/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ add_executable(lcd_1602_i2c
22
lcd_1602_i2c.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(lcd_1602_i2c pico_stdlib hardware_i2c)
77

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

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

i2c/mpu6050_i2c/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(mpu6050_i2c
22
mpu6050_i2c.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(mpu6050_i2c pico_stdlib hardware_i2c)
77

88
# create map/bin/hex file etc.

rtc/hello_rtc/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(hello_rtc
22
hello_rtc.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(hello_rtc pico_stdlib hardware_rtc)
77

88
# create map/bin/hex file etc.

rtc/rtc_alarm/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(rtc_alarm
22
rtc_alarm.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(rtc_alarm pico_stdlib hardware_rtc)
77

88
# create map/bin/hex file etc.

rtc/rtc_alarm_repeat/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(rtc_alarm_repeat
22
rtc_alarm_repeat.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(rtc_alarm_repeat pico_stdlib hardware_rtc)
77

88
# create map/bin/hex file etc.

spi/bme280_spi/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(bme280_spi
22
bme280_spi.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(bme280_spi pico_stdlib hardware_spi)
77

88
# create map/bin/hex file etc.

spi/mpu9250_spi/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(mpu9250_spi
22
mpu9250_spi.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(mpu9250_spi pico_stdlib hardware_spi)
77

88
# create map/bin/hex file etc.

timer/hello_timer/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ add_executable(hello_timer
22
hello_timer.c
33
)
44

5-
# Pull in our (to be renamed) simple get you started dependencies
5+
# Pull in our get you started dependencies
66
target_link_libraries(hello_timer pico_stdlib)
77

88
# create map/bin/hex file etc.

timer/periodic_sampler/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ if (NOT PICO_TIME_NO_ALARM_SUPPORT)
33
periodic_sampler.c
44
)
55

6-
# Pull in our (to be renamed) simple get you started dependencies
6+
# Pull in our get you started dependencies
77
target_link_libraries(periodic_sampler pico_stdlib)
88

99
# create map/bin/hex file etc.

0 commit comments

Comments
 (0)