Skip to content

Commit 5e7a244

Browse files
committed
Fix indentation
1 parent 131141b commit 5e7a244

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

CMakeLists.txt

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ set(PROJECT_VERSION "0.2.2-BETA.${MAGIC_SMOKE}") # Must be the same as in confi
3535
### Want a cookie?
3636
# NOTICE: ENABLING THESE DEBUGGING DEFINITIONS WILL HAVE SIGNIFICANT IMPACT AND WILL DELAY PLAYING!
3737
if(NOT DEFINED $ENV{DISABLE_DEBUGGING}) # MATCHES
38-
set(USBSID_DEBUGGING 1) # Enable UART ~ mandatory enable for all other logging types
39-
set(MEMORY_LOGGING 0) # Enable memory map of SID 1 voices printing
40-
set(DEFAULT_DEBUGGING 1) # Enable debugging in usbsid.c
41-
set(USBIO_DEBUGGING 0) # Enable debugging in usbsid.c
42-
set(CONFIG_DEBUGGING 1) # Enable debugging in config.c
43-
set(GPIOBUS_DEBUGGING 0) # Enable debugging in gpio.c
44-
set(MIDI_DEBUGGING 0) # Enable debugging in midi.c
38+
set(USBSID_DEBUGGING 1) # Enable UART ~ mandatory enable for all other logging types
39+
set(MEMORY_LOGGING 0) # Enable memory map of SID 1 voices printing
40+
set(DEFAULT_DEBUGGING 1) # Enable debugging in usbsid.c
41+
set(USBIO_DEBUGGING 0) # Enable debugging in usbsid.c
42+
set(CONFIG_DEBUGGING 1) # Enable debugging in config.c
43+
set(GPIOBUS_DEBUGGING 0) # Enable debugging in gpio.c
44+
set(MIDI_DEBUGGING 0) # Enable debugging in midi.c
45+
set(MIDIVOICE_DEBUGGING 0) # Enable debugging in midi.c
4546
endif()
4647

4748

@@ -198,12 +199,12 @@ list(APPEND PICOTYPES
198199
"LED"
199200
)
200201
if(${PICO_BOARD} STREQUAL "pico")
201-
list(APPEND FILENAMES
202-
${PROJECT_FILENAME}-rgb
203-
)
204-
list(APPEND PICOTYPES
202+
list(APPEND FILENAMES
203+
${PROJECT_FILENAME}-rgb
204+
)
205+
list(APPEND PICOTYPES
205206
"RGB"
206-
)
207+
)
207208
endif()
208209

209210
### Source files to compile

0 commit comments

Comments
 (0)