Skip to content

Commit 3385456

Browse files
committed
Remove incorrect inverted dependency on Pioasm which broke Ninja build (raspberrypi#24)
1 parent 2cbea72 commit 3385456

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pio/squarewave/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ example_auto_set_url(pio_squarewave)
1515
# generate .hex file and .pio.h file for the RP2040 datasheet (to make sure
1616
# the datasheet always shows the output of the latest pioasm version)
1717
add_custom_target(pio_squarewave_datasheet DEPENDS
18-
Pioasm
1918
${CMAKE_CURRENT_LIST_DIR}/generated/squarewave.hex
2019
${CMAKE_CURRENT_LIST_DIR}/generated/squarewave.pio.h
2120
${CMAKE_CURRENT_LIST_DIR}/generated/squarewave_wrap.pio.h

pio/ws2812/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pico_add_extra_outputs(pio_ws2812_parallel)
2727
example_auto_set_url(pio_ws2812_parallel)
2828

2929
# Additionally generate python and hex pioasm outputs for inclusion in the RP2040 datasheet
30-
add_custom_target(pio_ws2812_datasheet DEPENDS Pioasm ${CMAKE_CURRENT_LIST_DIR}/generated/ws2812.py)
30+
add_custom_target(pio_ws2812_datasheet DEPENDS ${CMAKE_CURRENT_LIST_DIR}/generated/ws2812.py)
3131
add_custom_command(OUTPUT ${CMAKE_CURRENT_LIST_DIR}/generated/ws2812.py
3232
DEPENDS ${CMAKE_CURRENT_LIST_DIR}/ws2812.pio
3333
COMMAND Pioasm -o python ${CMAKE_CURRENT_LIST_DIR}/ws2812.pio ${CMAKE_CURRENT_LIST_DIR}/generated/ws2812.py

0 commit comments

Comments
 (0)