Skip to content

Commit 868f2bc

Browse files
authored
Merge pull request hathach#1554 from kilograham/rp2040_warning2
Rework CMake example warnings some more
2 parents 1a8c3a8 + 7e4c0f6 commit 868f2bc

File tree

29 files changed

+101
-133
lines changed

29 files changed

+101
-133
lines changed

examples/device/audio_4_channel_mic/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

examples/device/audio_test/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

examples/device/board_test/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ else()
3636
${CMAKE_CURRENT_SOURCE_DIR}/src
3737
)
3838

39-
# Example common such as compiler warnings
40-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
41-
4239
# Configure compilation flags and libraries for the example... see the corresponding function
4340
# in hw/bsp/FAMILY/family.cmake for details.
4441
family_configure_device_example(${PROJECT})

examples/device/cdc_dual_ports/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

examples/device/cdc_msc/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ target_include_directories(${PROJECT} PUBLIC
2424
${CMAKE_CURRENT_SOURCE_DIR}/src
2525
)
2626

27-
# Example common such as compiler warnings
28-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
29-
3027
# Configure compilation flags and libraries for the example... see the corresponding function
3128
# in hw/bsp/FAMILY/family.cmake for details.
3229
family_configure_device_example(${PROJECT})

examples/device/dfu/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

examples/device/dfu_runtime/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

examples/device/dynamic_configuration/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ target_include_directories(${PROJECT} PUBLIC
2424
${CMAKE_CURRENT_SOURCE_DIR}/src
2525
)
2626

27-
# Example common such as compiler warnings
28-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
29-
3027
# Configure compilation flags and libraries for the example... see the corresponding function
3128
# in hw/bsp/FAMILY/family.cmake for details.
3229
family_configure_device_example(${PROJECT})

examples/device/hid_boot_interface/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

examples/device/hid_composite/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ target_include_directories(${PROJECT} PUBLIC
2323
${CMAKE_CURRENT_SOURCE_DIR}/src
2424
)
2525

26-
# Example common such as compiler warnings
27-
include(${CMAKE_CURRENT_SOURCE_DIR}/../../example.cmake)
28-
2926
# Configure compilation flags and libraries for the example... see the corresponding function
3027
# in hw/bsp/FAMILY/family.cmake for details.
3128
family_configure_device_example(${PROJECT})

0 commit comments

Comments
 (0)