diff --git a/doc/application/application.rst b/doc/application/application.rst index 766aff18776..45585a7c18a 100644 --- a/doc/application/application.rst +++ b/doc/application/application.rst @@ -119,7 +119,7 @@ Follow these steps to create a new application directory. (Refer to # Boilerplate code, which pulls in the Zephyr build system. cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) - project(NONE) + project(my_zephyr_app) # Add your source file to the "app" target. This must come after # the boilerplate code, which defines the target. @@ -733,7 +733,7 @@ Create a Debugger Configuration - In the Main tab: - - Project: NONE@build + - Project: my_zephyr_app@build - C/C++ Application: :file:`zephyr/zephyr.elf` - In the Debugger tab: @@ -910,7 +910,7 @@ Make sure to follow these steps in order. .. code-block:: cmake include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) - project(NONE) + project(my_zephyr_app) #. Now add any application source files to the 'app' target library, each on their own line, like so: @@ -926,7 +926,7 @@ Below is a simple example :file:`CMakeList.txt`: set(BOARD qemu_x86) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) - project(NONE) + project(my_zephyr_app) target_sources(app PRIVATE src/main.c) diff --git a/samples/application_development/external_lib/CMakeLists.txt b/samples/application_development/external_lib/CMakeLists.txt index c01db6b5d5d..4327405ecd0 100644 --- a/samples/application_development/external_lib/CMakeLists.txt +++ b/samples/application_development/external_lib/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(external_lib) target_sources(app PRIVATE src/main.c) diff --git a/samples/application_development/out_of_tree_board/CMakeLists.txt b/samples/application_development/out_of_tree_board/CMakeLists.txt index acbedee9c63..5e185ce56cf 100644 --- a/samples/application_development/out_of_tree_board/CMakeLists.txt +++ b/samples/application_development/out_of_tree_board/CMakeLists.txt @@ -9,6 +9,6 @@ set(BOARD_ROOT ${CMAKE_CURRENT_LIST_DIR}) set(BOARD nrf52840_pca10056) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(out_of_tree_board) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/blink_led/CMakeLists.txt b/samples/basic/blink_led/CMakeLists.txt index d31247ae874..4472f064851 100644 --- a/samples/basic/blink_led/CMakeLists.txt +++ b/samples/basic/blink_led/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(blink_led) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/blinky/CMakeLists.txt b/samples/basic/blinky/CMakeLists.txt index d31247ae874..0ed40476490 100644 --- a/samples/basic/blinky/CMakeLists.txt +++ b/samples/basic/blinky/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(blinky) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/button/CMakeLists.txt b/samples/basic/button/CMakeLists.txt index d31247ae874..769bd4480ef 100644 --- a/samples/basic/button/CMakeLists.txt +++ b/samples/basic/button/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(button) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/disco/CMakeLists.txt b/samples/basic/disco/CMakeLists.txt index d31247ae874..6775214a280 100644 --- a/samples/basic/disco/CMakeLists.txt +++ b/samples/basic/disco/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(disco) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/fade_led/CMakeLists.txt b/samples/basic/fade_led/CMakeLists.txt index d31247ae874..ac257ba6629 100644 --- a/samples/basic/fade_led/CMakeLists.txt +++ b/samples/basic/fade_led/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fade_led) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/rgb_led/CMakeLists.txt b/samples/basic/rgb_led/CMakeLists.txt index d31247ae874..a7f62f8bf7c 100644 --- a/samples/basic/rgb_led/CMakeLists.txt +++ b/samples/basic/rgb_led/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rgb_led) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/servo_motor/CMakeLists.txt b/samples/basic/servo_motor/CMakeLists.txt index d31247ae874..8b73beccca4 100644 --- a/samples/basic/servo_motor/CMakeLists.txt +++ b/samples/basic/servo_motor/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(servo_motor) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/threads/CMakeLists.txt b/samples/basic/threads/CMakeLists.txt index d31247ae874..1e345958128 100644 --- a/samples/basic/threads/CMakeLists.txt +++ b/samples/basic/threads/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(threads) target_sources(app PRIVATE src/main.c) diff --git a/samples/basic/userspace/shared_mem/CMakeLists.txt b/samples/basic/userspace/shared_mem/CMakeLists.txt index 1bc9d8206f0..254693ce349 100644 --- a/samples/basic/userspace/shared_mem/CMakeLists.txt +++ b/samples/basic/userspace/shared_mem/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(shared_mem) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/bluetooth/beacon/CMakeLists.txt b/samples/bluetooth/beacon/CMakeLists.txt index d31247ae874..e640b3fa518 100644 --- a/samples/bluetooth/beacon/CMakeLists.txt +++ b/samples/bluetooth/beacon/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(beacon) target_sources(app PRIVATE src/main.c) diff --git a/samples/bluetooth/central/CMakeLists.txt b/samples/bluetooth/central/CMakeLists.txt index 61f8ee399b5..ff9f9ec7fea 100644 --- a/samples/bluetooth/central/CMakeLists.txt +++ b/samples/bluetooth/central/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(central) target_sources(app PRIVATE src/main.c diff --git a/samples/bluetooth/central_hr/CMakeLists.txt b/samples/bluetooth/central_hr/CMakeLists.txt index cb9d7e0e4e6..d3003916139 100644 --- a/samples/bluetooth/central_hr/CMakeLists.txt +++ b/samples/bluetooth/central_hr/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(central_hr) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/bluetooth/eddystone/CMakeLists.txt b/samples/bluetooth/eddystone/CMakeLists.txt index 61f8ee399b5..200e6be627a 100644 --- a/samples/bluetooth/eddystone/CMakeLists.txt +++ b/samples/bluetooth/eddystone/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(eddystone) target_sources(app PRIVATE src/main.c diff --git a/samples/bluetooth/handsfree/CMakeLists.txt b/samples/bluetooth/handsfree/CMakeLists.txt index cb9d7e0e4e6..7610c2a86f4 100644 --- a/samples/bluetooth/handsfree/CMakeLists.txt +++ b/samples/bluetooth/handsfree/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(handsfree) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/bluetooth/hci_spi/CMakeLists.txt b/samples/bluetooth/hci_spi/CMakeLists.txt index cb9d7e0e4e6..bd0e9a8c597 100644 --- a/samples/bluetooth/hci_spi/CMakeLists.txt +++ b/samples/bluetooth/hci_spi/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hci_spi) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/bluetooth/hci_uart/CMakeLists.txt b/samples/bluetooth/hci_uart/CMakeLists.txt index 17263dd9845..2c33840c422 100644 --- a/samples/bluetooth/hci_uart/CMakeLists.txt +++ b/samples/bluetooth/hci_uart/CMakeLists.txt @@ -6,6 +6,6 @@ else() endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hci_uart) target_sources(app PRIVATE src/main.c) diff --git a/samples/bluetooth/hci_usb/CMakeLists.txt b/samples/bluetooth/hci_usb/CMakeLists.txt index d31247ae874..d61e90bbc13 100644 --- a/samples/bluetooth/hci_usb/CMakeLists.txt +++ b/samples/bluetooth/hci_usb/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hci_usb) target_sources(app PRIVATE src/main.c) diff --git a/samples/bluetooth/ibeacon/CMakeLists.txt b/samples/bluetooth/ibeacon/CMakeLists.txt index 011001a3c1e..6722311a4ba 100644 --- a/samples/bluetooth/ibeacon/CMakeLists.txt +++ b/samples/bluetooth/ibeacon/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ibeacon) target_sources(app PRIVATE src/main.c) diff --git a/samples/bluetooth/ipsp/CMakeLists.txt b/samples/bluetooth/ipsp/CMakeLists.txt index c1d7f691396..e442164214b 100644 --- a/samples/bluetooth/ipsp/CMakeLists.txt +++ b/samples/bluetooth/ipsp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipsp) target_sources(app PRIVATE src/main.c diff --git a/samples/bluetooth/mesh/CMakeLists.txt b/samples/bluetooth/mesh/CMakeLists.txt index 48ddc78757e..5ceb2c5414c 100644 --- a/samples/bluetooth/mesh/CMakeLists.txt +++ b/samples/bluetooth/mesh/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8.2) set(QEMU_EXTRA_FLAGS -s) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mesh) target_sources(app PRIVATE src/main.c) target_sources_ifdef(CONFIG_BOARD_BBC_MICROBIT app PRIVATE src/microbit.c) diff --git a/samples/bluetooth/mesh_demo/CMakeLists.txt b/samples/bluetooth/mesh_demo/CMakeLists.txt index f7346761e00..d25aae945d9 100644 --- a/samples/bluetooth/mesh_demo/CMakeLists.txt +++ b/samples/bluetooth/mesh_demo/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8.2) set(QEMU_EXTRA_FLAGS -s) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mesh_demo) target_sources(app PRIVATE src/main.c) target_sources_ifdef(CONFIG_BOARD_BBC_MICROBIT app PRIVATE src/microbit.c) diff --git a/samples/bluetooth/peripheral/CMakeLists.txt b/samples/bluetooth/peripheral/CMakeLists.txt index aa21ac121ee..fbe3133a012 100644 --- a/samples/bluetooth/peripheral/CMakeLists.txt +++ b/samples/bluetooth/peripheral/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral) target_sources(app PRIVATE src/main.c diff --git a/samples/bluetooth/peripheral_csc/CMakeLists.txt b/samples/bluetooth/peripheral_csc/CMakeLists.txt index 0edbe6d84d3..9d5fdd49549 100644 --- a/samples/bluetooth/peripheral_csc/CMakeLists.txt +++ b/samples/bluetooth/peripheral_csc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral_csc) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE diff --git a/samples/bluetooth/peripheral_dis/CMakeLists.txt b/samples/bluetooth/peripheral_dis/CMakeLists.txt index 60dbe810d41..69c60c8b986 100644 --- a/samples/bluetooth/peripheral_dis/CMakeLists.txt +++ b/samples/bluetooth/peripheral_dis/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral_dis) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE diff --git a/samples/bluetooth/peripheral_esp/CMakeLists.txt b/samples/bluetooth/peripheral_esp/CMakeLists.txt index 0afb9bc9be4..442cd42049a 100644 --- a/samples/bluetooth/peripheral_esp/CMakeLists.txt +++ b/samples/bluetooth/peripheral_esp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral_esp) target_sources(app PRIVATE src/main.c diff --git a/samples/bluetooth/peripheral_hids/CMakeLists.txt b/samples/bluetooth/peripheral_hids/CMakeLists.txt index df811b139b5..2382a73f7d8 100644 --- a/samples/bluetooth/peripheral_hids/CMakeLists.txt +++ b/samples/bluetooth/peripheral_hids/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral_hids) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE diff --git a/samples/bluetooth/peripheral_hr/CMakeLists.txt b/samples/bluetooth/peripheral_hr/CMakeLists.txt index 99e7badcda7..f06bf872b07 100644 --- a/samples/bluetooth/peripheral_hr/CMakeLists.txt +++ b/samples/bluetooth/peripheral_hr/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral_hr) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE diff --git a/samples/bluetooth/peripheral_sc_only/CMakeLists.txt b/samples/bluetooth/peripheral_sc_only/CMakeLists.txt index 61f8ee399b5..e7cbb443d13 100644 --- a/samples/bluetooth/peripheral_sc_only/CMakeLists.txt +++ b/samples/bluetooth/peripheral_sc_only/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(peripheral_sc_only) target_sources(app PRIVATE src/main.c diff --git a/samples/bluetooth/scan_adv/CMakeLists.txt b/samples/bluetooth/scan_adv/CMakeLists.txt index cb9d7e0e4e6..45fb46748c5 100644 --- a/samples/bluetooth/scan_adv/CMakeLists.txt +++ b/samples/bluetooth/scan_adv/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(scan_adv) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/boards/96b_argonkey/CMakeLists.txt b/samples/boards/96b_argonkey/CMakeLists.txt index a1cca6dc701..08ff38002bb 100644 --- a/samples/boards/96b_argonkey/CMakeLists.txt +++ b/samples/boards/96b_argonkey/CMakeLists.txt @@ -5,6 +5,6 @@ cmake_minimum_required(VERSION 3.8.2) # include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(96b_argonkey) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/altera_max10/pio/CMakeLists.txt b/samples/boards/altera_max10/pio/CMakeLists.txt index d31247ae874..f2fd2bf8c9c 100644 --- a/samples/boards/altera_max10/pio/CMakeLists.txt +++ b/samples/boards/altera_max10/pio/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pio) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/arduino_101/environmental_sensing/ap/CMakeLists.txt b/samples/boards/arduino_101/environmental_sensing/ap/CMakeLists.txt index 64790481c7d..9caad594d39 100644 --- a/samples/boards/arduino_101/environmental_sensing/ap/CMakeLists.txt +++ b/samples/boards/arduino_101/environmental_sensing/ap/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(environmental_sensing_ap) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/drivers) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/arduino_101/environmental_sensing/sensor/CMakeLists.txt b/samples/boards/arduino_101/environmental_sensing/sensor/CMakeLists.txt index 64790481c7d..b1457e4a7ff 100644 --- a/samples/boards/arduino_101/environmental_sensing/sensor/CMakeLists.txt +++ b/samples/boards/arduino_101/environmental_sensing/sensor/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(environmental_sensing_sensor) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/drivers) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/microbit/display/CMakeLists.txt b/samples/boards/microbit/display/CMakeLists.txt index af818872cf3..a25f8387174 100644 --- a/samples/boards/microbit/display/CMakeLists.txt +++ b/samples/boards/microbit/display/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(display) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/boards/microbit/pong/CMakeLists.txt b/samples/boards/microbit/pong/CMakeLists.txt index af818872cf3..e65db412b23 100644 --- a/samples/boards/microbit/pong/CMakeLists.txt +++ b/samples/boards/microbit/pong/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pong) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/boards/microbit/sound/CMakeLists.txt b/samples/boards/microbit/sound/CMakeLists.txt index af818872cf3..e5925714d6b 100644 --- a/samples/boards/microbit/sound/CMakeLists.txt +++ b/samples/boards/microbit/sound/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sound) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/boards/nrf52/mesh/onoff-app/CMakeLists.txt b/samples/boards/nrf52/mesh/onoff-app/CMakeLists.txt index d11dd9dcbf8..71ee249c76c 100644 --- a/samples/boards/nrf52/mesh/onoff-app/CMakeLists.txt +++ b/samples/boards/nrf52/mesh/onoff-app/CMakeLists.txt @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.8.2) set(QEMU_EXTRA_FLAGS -s) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(onoff-app) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt b/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt index 627de0e8239..f1bf3010cbd 100644 --- a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt +++ b/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8.2) set(QEMU_EXTRA_FLAGS -s) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(onoff_level_lighting_vnd_app) target_link_libraries(app PUBLIC subsys__bluetooth) diff --git a/samples/boards/nrf52/power_mgr/CMakeLists.txt b/samples/boards/nrf52/power_mgr/CMakeLists.txt index 800ba5841af..6a8741b8a19 100644 --- a/samples/boards/nrf52/power_mgr/CMakeLists.txt +++ b/samples/boards/nrf52/power_mgr/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(nrf52_power_mgr) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt b/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt index d31247ae874..ec91c005223 100644 --- a/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt +++ b/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ccm) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/quark_se_c1000/power_mgr/CMakeLists.txt b/samples/boards/quark_se_c1000/power_mgr/CMakeLists.txt index d31247ae874..2402c4f0d60 100644 --- a/samples/boards/quark_se_c1000/power_mgr/CMakeLists.txt +++ b/samples/boards/quark_se_c1000/power_mgr/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(quark_se_c1000_power_mgr) target_sources(app PRIVATE src/main.c) diff --git a/samples/boards/reel_board/mesh_badge/CMakeLists.txt b/samples/boards/reel_board/mesh_badge/CMakeLists.txt index c5861dd7cad..a79b7f91a9d 100644 --- a/samples/boards/reel_board/mesh_badge/CMakeLists.txt +++ b/samples/boards/reel_board/mesh_badge/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mesh_badge) target_sources(app PRIVATE src/main.c src/mesh.c src/${BOARD}.c) diff --git a/samples/boards/up_squared/gpio_counter/CMakeLists.txt b/samples/boards/up_squared/gpio_counter/CMakeLists.txt index 5f27e454448..f0e7ac4adff 100644 --- a/samples/boards/up_squared/gpio_counter/CMakeLists.txt +++ b/samples/boards/up_squared/gpio_counter/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(gpio_counter) target_sources(app PRIVATE src/main.c) diff --git a/samples/cpp_synchronization/CMakeLists.txt b/samples/cpp_synchronization/CMakeLists.txt index d2b9fcd3eea..c2f38b6706d 100644 --- a/samples/cpp_synchronization/CMakeLists.txt +++ b/samples/cpp_synchronization/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(cpp_synchronization) target_sources(app PRIVATE src/main.cpp) diff --git a/samples/display/cfb/CMakeLists.txt b/samples/display/cfb/CMakeLists.txt index cb9aef6bb80..1f29188f478 100644 --- a/samples/display/cfb/CMakeLists.txt +++ b/samples/display/cfb/CMakeLists.txt @@ -11,7 +11,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(cfb) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/display/grove_display/CMakeLists.txt b/samples/display/grove_display/CMakeLists.txt index 800ba5841af..2738f1295cd 100644 --- a/samples/display/grove_display/CMakeLists.txt +++ b/samples/display/grove_display/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(grove_display) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/display/ili9340/CMakeLists.txt b/samples/display/ili9340/CMakeLists.txt index 800ba5841af..d6dd1b8389b 100644 --- a/samples/display/ili9340/CMakeLists.txt +++ b/samples/display/ili9340/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ili9340) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/CAN/CMakeLists.txt b/samples/drivers/CAN/CMakeLists.txt index b1d4297b24a..2e1ad30c849 100644 --- a/samples/drivers/CAN/CMakeLists.txt +++ b/samples/drivers/CAN/CMakeLists.txt @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(CAN) target_sources(app PRIVATE src/main.c) diff --git a/samples/drivers/crypto/CMakeLists.txt b/samples/drivers/crypto/CMakeLists.txt index 800ba5841af..ad9f8abba32 100644 --- a/samples/drivers/crypto/CMakeLists.txt +++ b/samples/drivers/crypto/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(crypto) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/current_sensing/CMakeLists.txt b/samples/drivers/current_sensing/CMakeLists.txt index 800ba5841af..206e9ccbdc7 100644 --- a/samples/drivers/current_sensing/CMakeLists.txt +++ b/samples/drivers/current_sensing/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(current_sensing) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/entropy/CMakeLists.txt b/samples/drivers/entropy/CMakeLists.txt index 800ba5841af..89f874b33c8 100644 --- a/samples/drivers/entropy/CMakeLists.txt +++ b/samples/drivers/entropy/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(entropy) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/flash_shell/CMakeLists.txt b/samples/drivers/flash_shell/CMakeLists.txt index 800ba5841af..c580fee0728 100644 --- a/samples/drivers/flash_shell/CMakeLists.txt +++ b/samples/drivers/flash_shell/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(flash_shell) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/gpio/CMakeLists.txt b/samples/drivers/gpio/CMakeLists.txt index 800ba5841af..554528ecec1 100644 --- a/samples/drivers/gpio/CMakeLists.txt +++ b/samples/drivers/gpio/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(gpio) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt b/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt index 800ba5841af..6daf80a3682 100644 --- a/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt +++ b/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(i2c_fujitsu_fram) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/lcd_hd44780/CMakeLists.txt b/samples/drivers/lcd_hd44780/CMakeLists.txt index 800ba5841af..94f3c5a48fa 100644 --- a/samples/drivers/lcd_hd44780/CMakeLists.txt +++ b/samples/drivers/lcd_hd44780/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lcd_hd44780) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/led_apa102c/CMakeLists.txt b/samples/drivers/led_apa102c/CMakeLists.txt index 800ba5841af..f61dc1adae6 100644 --- a/samples/drivers/led_apa102c/CMakeLists.txt +++ b/samples/drivers/led_apa102c/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(led_apa102c) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/led_lp3943/CMakeLists.txt b/samples/drivers/led_lp3943/CMakeLists.txt index c856cacf06e..8b60300eeaf 100644 --- a/samples/drivers/led_lp3943/CMakeLists.txt +++ b/samples/drivers/led_lp3943/CMakeLists.txt @@ -8,7 +8,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(led_lp3943) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/led_lp5562/CMakeLists.txt b/samples/drivers/led_lp5562/CMakeLists.txt index c856cacf06e..f94ecadebe8 100644 --- a/samples/drivers/led_lp5562/CMakeLists.txt +++ b/samples/drivers/led_lp5562/CMakeLists.txt @@ -8,7 +8,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(led_lp5562) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/led_lpd8806/CMakeLists.txt b/samples/drivers/led_lpd8806/CMakeLists.txt index c856cacf06e..eb74644d130 100644 --- a/samples/drivers/led_lpd8806/CMakeLists.txt +++ b/samples/drivers/led_lpd8806/CMakeLists.txt @@ -8,7 +8,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(led_lpd8806) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/led_pca9633/CMakeLists.txt b/samples/drivers/led_pca9633/CMakeLists.txt index c856cacf06e..412c0d18a64 100644 --- a/samples/drivers/led_pca9633/CMakeLists.txt +++ b/samples/drivers/led_pca9633/CMakeLists.txt @@ -8,7 +8,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(led_pca9633) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/led_ws2812/CMakeLists.txt b/samples/drivers/led_ws2812/CMakeLists.txt index c856cacf06e..4cf6d6959d5 100644 --- a/samples/drivers/led_ws2812/CMakeLists.txt +++ b/samples/drivers/led_ws2812/CMakeLists.txt @@ -8,7 +8,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(led_ws2812) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/random/CMakeLists.txt b/samples/drivers/random/CMakeLists.txt index 800ba5841af..7e7a9421c03 100644 --- a/samples/drivers/random/CMakeLists.txt +++ b/samples/drivers/random/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(random) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/rtc/CMakeLists.txt b/samples/drivers/rtc/CMakeLists.txt index 800ba5841af..af20a24e1f1 100644 --- a/samples/drivers/rtc/CMakeLists.txt +++ b/samples/drivers/rtc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rtc) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/soc_flash_nrf/CMakeLists.txt b/samples/drivers/soc_flash_nrf/CMakeLists.txt index 800ba5841af..1a2fde79d6e 100644 --- a/samples/drivers/soc_flash_nrf/CMakeLists.txt +++ b/samples/drivers/soc_flash_nrf/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(soc_flash_nrf) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/spi_flash/CMakeLists.txt b/samples/drivers/spi_flash/CMakeLists.txt index 800ba5841af..f16a3c75783 100644 --- a/samples/drivers/spi_flash/CMakeLists.txt +++ b/samples/drivers/spi_flash/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(spi_flash) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/spi_fujitsu_fram/CMakeLists.txt b/samples/drivers/spi_fujitsu_fram/CMakeLists.txt index 800ba5841af..7007b28fbbd 100644 --- a/samples/drivers/spi_fujitsu_fram/CMakeLists.txt +++ b/samples/drivers/spi_fujitsu_fram/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(spi_fujitsu_fram) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/drivers/watchdog/CMakeLists.txt b/samples/drivers/watchdog/CMakeLists.txt index ea722b49065..5f9646d6b43 100644 --- a/samples/drivers/watchdog/CMakeLists.txt +++ b/samples/drivers/watchdog/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(watchdog) if(CONFIG_IWDG_STM32) target_sources(app PRIVATE src/iwdg_main.c) diff --git a/samples/hello_world/CMakeLists.txt b/samples/hello_world/CMakeLists.txt index 5f27e454448..9c3c38b669b 100644 --- a/samples/hello_world/CMakeLists.txt +++ b/samples/hello_world/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hello_world) target_sources(app PRIVATE src/main.c) diff --git a/samples/mpu/mem_domain_apis_test/CMakeLists.txt b/samples/mpu/mem_domain_apis_test/CMakeLists.txt index af818872cf3..66c90271760 100644 --- a/samples/mpu/mem_domain_apis_test/CMakeLists.txt +++ b/samples/mpu/mem_domain_apis_test/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_domain_apis_test) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/mpu/mpu_stack_guard_test/CMakeLists.txt b/samples/mpu/mpu_stack_guard_test/CMakeLists.txt index af818872cf3..89e841f6d29 100644 --- a/samples/mpu/mpu_stack_guard_test/CMakeLists.txt +++ b/samples/mpu/mpu_stack_guard_test/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mpu_stack_guard_test) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/mpu/mpu_test/CMakeLists.txt b/samples/mpu/mpu_test/CMakeLists.txt index af818872cf3..97c9df7c59a 100644 --- a/samples/mpu/mpu_test/CMakeLists.txt +++ b/samples/mpu/mpu_test/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mpu_test) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/coap_client/CMakeLists.txt b/samples/net/coap_client/CMakeLists.txt index d5766240e3c..60b35c1703c 100644 --- a/samples/net/coap_client/CMakeLists.txt +++ b/samples/net/coap_client/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(coap_client) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/coap_server/CMakeLists.txt b/samples/net/coap_server/CMakeLists.txt index d5766240e3c..e5eec51a3c8 100644 --- a/samples/net/coap_server/CMakeLists.txt +++ b/samples/net/coap_server/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(coap_server) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/dhcpv4_client/CMakeLists.txt b/samples/net/dhcpv4_client/CMakeLists.txt index 800ba5841af..0df00a75e36 100644 --- a/samples/net/dhcpv4_client/CMakeLists.txt +++ b/samples/net/dhcpv4_client/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dhcpv4_client) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/dns_resolve/CMakeLists.txt b/samples/net/dns_resolve/CMakeLists.txt index 800ba5841af..040db8cac8d 100644 --- a/samples/net/dns_resolve/CMakeLists.txt +++ b/samples/net/dns_resolve/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dns_resolve) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/echo_client/CMakeLists.txt b/samples/net/echo_client/CMakeLists.txt index 9eddc045c64..b776f48b3ae 100644 --- a/samples/net/echo_client/CMakeLists.txt +++ b/samples/net/echo_client/CMakeLists.txt @@ -12,7 +12,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(echo_client) target_sources( app PRIVATE src/echo-client.c) target_sources_ifdef(CONFIG_NET_UDP app PRIVATE src/udp.c) diff --git a/samples/net/echo_server/CMakeLists.txt b/samples/net/echo_server/CMakeLists.txt index 68b8bb05dc5..c03ebe892b9 100644 --- a/samples/net/echo_server/CMakeLists.txt +++ b/samples/net/echo_server/CMakeLists.txt @@ -12,7 +12,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(echo_server) target_sources( app PRIVATE src/echo-server.c) target_sources_ifdef(CONFIG_NET_UDP app PRIVATE src/udp.c) diff --git a/samples/net/eth_native_posix/CMakeLists.txt b/samples/net/eth_native_posix/CMakeLists.txt index 56064229c3d..11b1dc5dcd7 100644 --- a/samples/net/eth_native_posix/CMakeLists.txt +++ b/samples/net/eth_native_posix/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(eth_native_posix) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/gptp/CMakeLists.txt b/samples/net/gptp/CMakeLists.txt index 6d71d439650..254924d0818 100644 --- a/samples/net/gptp/CMakeLists.txt +++ b/samples/net/gptp/CMakeLists.txt @@ -12,6 +12,6 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(gptp) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/http_client/CMakeLists.txt b/samples/net/http_client/CMakeLists.txt index 3d969d2587c..604693bb78d 100644 --- a/samples/net/http_client/CMakeLists.txt +++ b/samples/net/http_client/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(http_client) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/http_server/CMakeLists.txt b/samples/net/http_server/CMakeLists.txt index 37c1d29425c..ec34abe5330 100644 --- a/samples/net/http_server/CMakeLists.txt +++ b/samples/net/http_server/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(http_server) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/ipv4_autoconf/CMakeLists.txt b/samples/net/ipv4_autoconf/CMakeLists.txt index 800ba5841af..1adfdde2d95 100644 --- a/samples/net/ipv4_autoconf/CMakeLists.txt +++ b/samples/net/ipv4_autoconf/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipv4_autoconf) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/irc_bot/CMakeLists.txt b/samples/net/irc_bot/CMakeLists.txt index 800ba5841af..bfa515451b3 100644 --- a/samples/net/irc_bot/CMakeLists.txt +++ b/samples/net/irc_bot/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(irc_bot) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/leds_demo/CMakeLists.txt b/samples/net/leds_demo/CMakeLists.txt index c5db3c595bf..d861152f05c 100644 --- a/samples/net/leds_demo/CMakeLists.txt +++ b/samples/net/leds_demo/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(leds_demo) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) target_sources(app PRIVATE src/leds-demo.c) diff --git a/samples/net/lldp/CMakeLists.txt b/samples/net/lldp/CMakeLists.txt index 21afcdd648a..c75e443a5d7 100644 --- a/samples/net/lldp/CMakeLists.txt +++ b/samples/net/lldp/CMakeLists.txt @@ -12,6 +12,6 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lldp) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/lwm2m_client/CMakeLists.txt b/samples/net/lwm2m_client/CMakeLists.txt index b3759c5810c..dad99d39516 100644 --- a/samples/net/lwm2m_client/CMakeLists.txt +++ b/samples/net/lwm2m_client/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lwm2m_client) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/mdns_responder/CMakeLists.txt b/samples/net/mdns_responder/CMakeLists.txt index b3759c5810c..8f76aed93bd 100644 --- a/samples/net/mdns_responder/CMakeLists.txt +++ b/samples/net/mdns_responder/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mdns_responder) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/mqtt_publisher/CMakeLists.txt b/samples/net/mqtt_publisher/CMakeLists.txt index 800ba5841af..066c6d0db88 100644 --- a/samples/net/mqtt_publisher/CMakeLists.txt +++ b/samples/net/mqtt_publisher/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mqtt_publisher) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/nats/CMakeLists.txt b/samples/net/nats/CMakeLists.txt index 800ba5841af..8a682c322fc 100644 --- a/samples/net/nats/CMakeLists.txt +++ b/samples/net/nats/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(nats) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/promiscuous_mode/CMakeLists.txt b/samples/net/promiscuous_mode/CMakeLists.txt index d31247ae874..183b14fc479 100644 --- a/samples/net/promiscuous_mode/CMakeLists.txt +++ b/samples/net/promiscuous_mode/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(promiscuous_mode) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/rpl-mesh-qemu/node/CMakeLists.txt b/samples/net/rpl-mesh-qemu/node/CMakeLists.txt index 1fae4b36891..9d2526d8871 100644 --- a/samples/net/rpl-mesh-qemu/node/CMakeLists.txt +++ b/samples/net/rpl-mesh-qemu/node/CMakeLists.txt @@ -5,6 +5,6 @@ set(CONF_FILE prj_qemu.conf) set(QEMU_PIPE_STACK 1) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rpl_mesh_qemu_node) target_sources(app PRIVATE src/main.c) \ No newline at end of file diff --git a/samples/net/rpl-mesh-qemu/root/CMakeLists.txt b/samples/net/rpl-mesh-qemu/root/CMakeLists.txt index 71d3157a56e..6c5f50d61f0 100644 --- a/samples/net/rpl-mesh-qemu/root/CMakeLists.txt +++ b/samples/net/rpl-mesh-qemu/root/CMakeLists.txt @@ -5,7 +5,7 @@ set(CONF_FILE prj_qemu.conf) set(QEMU_PIPE_STACK 1) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rpl_mesh_qemu_root) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) diff --git a/samples/net/rpl_border_router/CMakeLists.txt b/samples/net/rpl_border_router/CMakeLists.txt index 5abcdf57035..c42a43ed546 100644 --- a/samples/net/rpl_border_router/CMakeLists.txt +++ b/samples/net/rpl_border_router/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rpl_border_router) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/rpl_node/CMakeLists.txt b/samples/net/rpl_node/CMakeLists.txt index 3420c3af134..3d8724ed3b6 100644 --- a/samples/net/rpl_node/CMakeLists.txt +++ b/samples/net/rpl_node/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rpl_node) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/sntp_client/CMakeLists.txt b/samples/net/sntp_client/CMakeLists.txt index 800ba5841af..ad489e5ec18 100644 --- a/samples/net/sntp_client/CMakeLists.txt +++ b/samples/net/sntp_client/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sntp_client) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/sockets/big_http_download/CMakeLists.txt b/samples/net/sockets/big_http_download/CMakeLists.txt index 98362b282fb..554d4161366 100644 --- a/samples/net/sockets/big_http_download/CMakeLists.txt +++ b/samples/net/sockets/big_http_download/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(big_http_download) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/sockets/dumb_http_server/CMakeLists.txt b/samples/net/sockets/dumb_http_server/CMakeLists.txt index a556dc7730d..825125e3c63 100644 --- a/samples/net/sockets/dumb_http_server/CMakeLists.txt +++ b/samples/net/sockets/dumb_http_server/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dumb_http_server) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/sockets/echo/CMakeLists.txt b/samples/net/sockets/echo/CMakeLists.txt index 346358999a8..009b35d6468 100644 --- a/samples/net/sockets/echo/CMakeLists.txt +++ b/samples/net/sockets/echo/CMakeLists.txt @@ -11,7 +11,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sockets_echo) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/sockets/echo_async/CMakeLists.txt b/samples/net/sockets/echo_async/CMakeLists.txt index b3759c5810c..33706f0033a 100644 --- a/samples/net/sockets/echo_async/CMakeLists.txt +++ b/samples/net/sockets/echo_async/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sockets_echo_async) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/sockets/echo_client/CMakeLists.txt b/samples/net/sockets/echo_client/CMakeLists.txt index fe8624f0e6c..128676f4507 100644 --- a/samples/net/sockets/echo_client/CMakeLists.txt +++ b/samples/net/sockets/echo_client/CMakeLists.txt @@ -9,7 +9,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sockets_echo_client) target_sources( app PRIVATE src/echo-client.c) target_sources_ifdef(CONFIG_NET_UDP app PRIVATE src/udp.c) diff --git a/samples/net/sockets/echo_server/CMakeLists.txt b/samples/net/sockets/echo_server/CMakeLists.txt index 4a8a39751ce..8c5003f4643 100644 --- a/samples/net/sockets/echo_server/CMakeLists.txt +++ b/samples/net/sockets/echo_server/CMakeLists.txt @@ -9,7 +9,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sockets_echo_server) target_sources( app PRIVATE src/echo-server.c) target_sources_ifdef(CONFIG_NET_UDP app PRIVATE src/udp.c) diff --git a/samples/net/sockets/http_get/CMakeLists.txt b/samples/net/sockets/http_get/CMakeLists.txt index 1d7e12d9727..b06ece3c498 100644 --- a/samples/net/sockets/http_get/CMakeLists.txt +++ b/samples/net/sockets/http_get/CMakeLists.txt @@ -11,7 +11,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(http_get) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/stats/CMakeLists.txt b/samples/net/stats/CMakeLists.txt index 0c17e1c5c21..e11f11ab14e 100644 --- a/samples/net/stats/CMakeLists.txt +++ b/samples/net/stats/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(stats) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/telnet/CMakeLists.txt b/samples/net/telnet/CMakeLists.txt index 800ba5841af..b91541fb44f 100644 --- a/samples/net/telnet/CMakeLists.txt +++ b/samples/net/telnet/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(telnet) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/throughput_server/CMakeLists.txt b/samples/net/throughput_server/CMakeLists.txt index bab1f237d01..2b0c4cc5924 100644 --- a/samples/net/throughput_server/CMakeLists.txt +++ b/samples/net/throughput_server/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(throughput_server) target_sources( app PRIVATE src/server.c) target_sources_ifdef(CONFIG_NET_UDP app PRIVATE src/udp.c) diff --git a/samples/net/traffic_class/CMakeLists.txt b/samples/net/traffic_class/CMakeLists.txt index 0c17e1c5c21..29e1a21afb8 100644 --- a/samples/net/traffic_class/CMakeLists.txt +++ b/samples/net/traffic_class/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(traffic_class) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/vlan/CMakeLists.txt b/samples/net/vlan/CMakeLists.txt index 0c17e1c5c21..209433b2e76 100644 --- a/samples/net/vlan/CMakeLists.txt +++ b/samples/net/vlan/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(vlan) target_sources(app PRIVATE src/main.c) diff --git a/samples/net/wifi/CMakeLists.txt b/samples/net/wifi/CMakeLists.txt index 9e3736c5b6d..7f25d67d234 100644 --- a/samples/net/wifi/CMakeLists.txt +++ b/samples/net/wifi/CMakeLists.txt @@ -11,7 +11,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(wifi) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/wpan_serial/CMakeLists.txt b/samples/net/wpan_serial/CMakeLists.txt index 5f9631a7e91..90f928356e2 100644 --- a/samples/net/wpan_serial/CMakeLists.txt +++ b/samples/net/wpan_serial/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(wpan_serial) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) diff --git a/samples/net/wpanusb/CMakeLists.txt b/samples/net/wpanusb/CMakeLists.txt index 5f9631a7e91..c8c76f4c843 100644 --- a/samples/net/wpanusb/CMakeLists.txt +++ b/samples/net/wpanusb/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(wpanusb) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) diff --git a/samples/net/ws_console/CMakeLists.txt b/samples/net/ws_console/CMakeLists.txt index 122f3a50060..cb4b361381a 100644 --- a/samples/net/ws_console/CMakeLists.txt +++ b/samples/net/ws_console/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ws_console) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/ws_echo_server/CMakeLists.txt b/samples/net/ws_echo_server/CMakeLists.txt index 0a697c608be..a80f4ccd4fa 100644 --- a/samples/net/ws_echo_server/CMakeLists.txt +++ b/samples/net/ws_echo_server/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ws_echo_server) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/net/zperf/CMakeLists.txt b/samples/net/zperf/CMakeLists.txt index 5de5694c61c..252e3fba2b0 100644 --- a/samples/net/zperf/CMakeLists.txt +++ b/samples/net/zperf/CMakeLists.txt @@ -12,7 +12,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(zperf) target_sources(app PRIVATE src/shell_utils.c diff --git a/samples/nfc/nfc_hello/CMakeLists.txt b/samples/nfc/nfc_hello/CMakeLists.txt index af1b1709f41..f42b280a47b 100644 --- a/samples/nfc/nfc_hello/CMakeLists.txt +++ b/samples/nfc/nfc_hello/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8.2) list(APPEND QEMU_EXTRA_FLAGS -serial tcp:localhost:8888) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(nfc_hello) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/philosophers/CMakeLists.txt b/samples/philosophers/CMakeLists.txt index d31247ae874..8dbebeaefd6 100644 --- a/samples/philosophers/CMakeLists.txt +++ b/samples/philosophers/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(philosophers) target_sources(app PRIVATE src/main.c) diff --git a/samples/sensor/adt7420/CMakeLists.txt b/samples/sensor/adt7420/CMakeLists.txt index 800ba5841af..8a7018522ec 100644 --- a/samples/sensor/adt7420/CMakeLists.txt +++ b/samples/sensor/adt7420/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(adt7420) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/adxl372/CMakeLists.txt b/samples/sensor/adxl372/CMakeLists.txt index bd007201b54..c7806b43024 100644 --- a/samples/sensor/adxl372/CMakeLists.txt +++ b/samples/sensor/adxl372/CMakeLists.txt @@ -5,7 +5,7 @@ # cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(adxl372) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/amg88xx/CMakeLists.txt b/samples/sensor/amg88xx/CMakeLists.txt index 800ba5841af..0751097e1fa 100644 --- a/samples/sensor/amg88xx/CMakeLists.txt +++ b/samples/sensor/amg88xx/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(amg88xx) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/apds9960/CMakeLists.txt b/samples/sensor/apds9960/CMakeLists.txt index 800ba5841af..1efd58a4e48 100644 --- a/samples/sensor/apds9960/CMakeLists.txt +++ b/samples/sensor/apds9960/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(apds9960) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/bme280/CMakeLists.txt b/samples/sensor/bme280/CMakeLists.txt index 800ba5841af..d551a3d8cec 100644 --- a/samples/sensor/bme280/CMakeLists.txt +++ b/samples/sensor/bme280/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bme280) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/bmg160/CMakeLists.txt b/samples/sensor/bmg160/CMakeLists.txt index 800ba5841af..6e3f903677d 100644 --- a/samples/sensor/bmg160/CMakeLists.txt +++ b/samples/sensor/bmg160/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bmg160) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/bmi160/CMakeLists.txt b/samples/sensor/bmi160/CMakeLists.txt index 800ba5841af..d2f36dc805b 100644 --- a/samples/sensor/bmi160/CMakeLists.txt +++ b/samples/sensor/bmi160/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bmi160) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/bmm150/CMakeLists.txt b/samples/sensor/bmm150/CMakeLists.txt index 800ba5841af..ef5563f3591 100644 --- a/samples/sensor/bmm150/CMakeLists.txt +++ b/samples/sensor/bmm150/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bmm150) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/ccs811/CMakeLists.txt b/samples/sensor/ccs811/CMakeLists.txt index 800ba5841af..860948a3d73 100644 --- a/samples/sensor/ccs811/CMakeLists.txt +++ b/samples/sensor/ccs811/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ccs811) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/fxas21002/CMakeLists.txt b/samples/sensor/fxas21002/CMakeLists.txt index 800ba5841af..60956c89417 100644 --- a/samples/sensor/fxas21002/CMakeLists.txt +++ b/samples/sensor/fxas21002/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fxas21002) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/fxos8700/CMakeLists.txt b/samples/sensor/fxos8700/CMakeLists.txt index 800ba5841af..44dab6a37b5 100644 --- a/samples/sensor/fxos8700/CMakeLists.txt +++ b/samples/sensor/fxos8700/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fxos8700) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/grove_light/CMakeLists.txt b/samples/sensor/grove_light/CMakeLists.txt index 800ba5841af..2a90b9ec8a9 100644 --- a/samples/sensor/grove_light/CMakeLists.txt +++ b/samples/sensor/grove_light/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(grove_light) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/grove_temperature/CMakeLists.txt b/samples/sensor/grove_temperature/CMakeLists.txt index 800ba5841af..43ad5788f48 100644 --- a/samples/sensor/grove_temperature/CMakeLists.txt +++ b/samples/sensor/grove_temperature/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(grove_temperature) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/hts221/CMakeLists.txt b/samples/sensor/hts221/CMakeLists.txt index 800ba5841af..55b8aacbf6f 100644 --- a/samples/sensor/hts221/CMakeLists.txt +++ b/samples/sensor/hts221/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hts221) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/lsm303dlhc/CMakeLists.txt b/samples/sensor/lsm303dlhc/CMakeLists.txt index 0c786753657..f86d9349b4f 100644 --- a/samples/sensor/lsm303dlhc/CMakeLists.txt +++ b/samples/sensor/lsm303dlhc/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lsm303dlhc) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/magn_polling/CMakeLists.txt b/samples/sensor/magn_polling/CMakeLists.txt index 800ba5841af..034e221617c 100644 --- a/samples/sensor/magn_polling/CMakeLists.txt +++ b/samples/sensor/magn_polling/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(magn_polling) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/max30101/CMakeLists.txt b/samples/sensor/max30101/CMakeLists.txt index 800ba5841af..a8135d3733e 100644 --- a/samples/sensor/max30101/CMakeLists.txt +++ b/samples/sensor/max30101/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(max30101) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/max44009/CMakeLists.txt b/samples/sensor/max44009/CMakeLists.txt index 800ba5841af..b1d0f18fe0d 100644 --- a/samples/sensor/max44009/CMakeLists.txt +++ b/samples/sensor/max44009/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(max44009) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/mcp9808/CMakeLists.txt b/samples/sensor/mcp9808/CMakeLists.txt index 800ba5841af..a373b146fe3 100644 --- a/samples/sensor/mcp9808/CMakeLists.txt +++ b/samples/sensor/mcp9808/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mcp9808) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/ms5837/CMakeLists.txt b/samples/sensor/ms5837/CMakeLists.txt index 800ba5841af..213ccb49f93 100644 --- a/samples/sensor/ms5837/CMakeLists.txt +++ b/samples/sensor/ms5837/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ms5837) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/sx9500/CMakeLists.txt b/samples/sensor/sx9500/CMakeLists.txt index 800ba5841af..560e5d6ae2b 100644 --- a/samples/sensor/sx9500/CMakeLists.txt +++ b/samples/sensor/sx9500/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sx9500) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/th02/CMakeLists.txt b/samples/sensor/th02/CMakeLists.txt index 800ba5841af..bf5d3351e9a 100644 --- a/samples/sensor/th02/CMakeLists.txt +++ b/samples/sensor/th02/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(th02) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/thermometer/CMakeLists.txt b/samples/sensor/thermometer/CMakeLists.txt index 800ba5841af..fece18a214e 100644 --- a/samples/sensor/thermometer/CMakeLists.txt +++ b/samples/sensor/thermometer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(thermometer) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/tmp112/CMakeLists.txt b/samples/sensor/tmp112/CMakeLists.txt index 800ba5841af..1d748cdedae 100644 --- a/samples/sensor/tmp112/CMakeLists.txt +++ b/samples/sensor/tmp112/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tmp112) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/sensor/vl53l0x/CMakeLists.txt b/samples/sensor/vl53l0x/CMakeLists.txt index 800ba5841af..400de56a06f 100644 --- a/samples/sensor/vl53l0x/CMakeLists.txt +++ b/samples/sensor/vl53l0x/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(vl53l0x) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/shields/x_nucleo_iks01a1/CMakeLists.txt b/samples/shields/x_nucleo_iks01a1/CMakeLists.txt index af818872cf3..d8fd4475141 100644 --- a/samples/shields/x_nucleo_iks01a1/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks01a1/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(x_nucleo_iks01a1) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/console/echo/CMakeLists.txt b/samples/subsys/console/echo/CMakeLists.txt index d31247ae874..55b4ba46874 100644 --- a/samples/subsys/console/echo/CMakeLists.txt +++ b/samples/subsys/console/echo/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(echo) target_sources(app PRIVATE src/main.c) diff --git a/samples/subsys/console/getchar/CMakeLists.txt b/samples/subsys/console/getchar/CMakeLists.txt index d31247ae874..2daeb2e282a 100644 --- a/samples/subsys/console/getchar/CMakeLists.txt +++ b/samples/subsys/console/getchar/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(getchar) target_sources(app PRIVATE src/main.c) diff --git a/samples/subsys/console/getline/CMakeLists.txt b/samples/subsys/console/getline/CMakeLists.txt index d31247ae874..dd505ae25b9 100644 --- a/samples/subsys/console/getline/CMakeLists.txt +++ b/samples/subsys/console/getline/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(getline) target_sources(app PRIVATE src/main.c) diff --git a/samples/subsys/ipc/ipm_mailbox/ap/CMakeLists.txt b/samples/subsys/ipc/ipm_mailbox/ap/CMakeLists.txt index 8515e265967..a5f5e5cf953 100644 --- a/samples/subsys/ipc/ipm_mailbox/ap/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mailbox/ap/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipm_mailbox_ap) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/drivers) target_sources(app PRIVATE src/hello.c) diff --git a/samples/subsys/ipc/ipm_mailbox/sensor/CMakeLists.txt b/samples/subsys/ipc/ipm_mailbox/sensor/CMakeLists.txt index 8515e265967..91c87b2381d 100644 --- a/samples/subsys/ipc/ipm_mailbox/sensor/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mailbox/sensor/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipm_mailbox_sensor) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/drivers) target_sources(app PRIVATE src/hello.c) diff --git a/samples/subsys/ipc/ipm_mcux/CMakeLists.txt b/samples/subsys/ipc/ipm_mcux/CMakeLists.txt index 8c4798da218..058aee8aa04 100644 --- a/samples/subsys/ipc/ipm_mcux/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mcux/CMakeLists.txt @@ -18,7 +18,7 @@ ExternalProject_Add( # NB: Do we need to pass on more CMake variables? ) -project(NONE) +project(ipm_mcux) target_sources(app PRIVATE src/main_master.c) add_dependencies(core_m0_inc_target ipm_mcux_remote) diff --git a/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt b/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt index ae55d12ee32..b2f49f1e05d 100644 --- a/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt @@ -6,6 +6,6 @@ cmake_minimum_required(VERSION 3.8.2) set(BOARD lpcxpresso54114_m0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipm_mcux_remote) target_sources(app PRIVATE src/main_remote.c) diff --git a/samples/subsys/ipc/openamp/CMakeLists.txt b/samples/subsys/ipc/openamp/CMakeLists.txt index 99f560ac196..5f96860a5d9 100644 --- a/samples/subsys/ipc/openamp/CMakeLists.txt +++ b/samples/subsys/ipc/openamp/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.8.2) set(BOARD lpcxpresso54114_m4) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(openamp) enable_language(C ASM) diff --git a/samples/subsys/ipc/openamp/remote/CMakeLists.txt b/samples/subsys/ipc/openamp/remote/CMakeLists.txt index 822cdfe15ce..3cf2a580ead 100644 --- a/samples/subsys/ipc/openamp/remote/CMakeLists.txt +++ b/samples/subsys/ipc/openamp/remote/CMakeLists.txt @@ -8,7 +8,7 @@ set(BOARD lpcxpresso54114_m0) set(PLATFORM_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../platform") include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(openamp_remote) target_sources(app PRIVATE src/main_remote.c ${PLATFORM_DIR}/platform.c diff --git a/samples/subsys/logging/logger/CMakeLists.txt b/samples/subsys/logging/logger/CMakeLists.txt index 093cd9d8ca9..118fc765b08 100644 --- a/samples/subsys/logging/logger/CMakeLists.txt +++ b/samples/subsys/logging/logger/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(logger) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt b/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt index 94478a52a73..6e8b062f08f 100644 --- a/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt +++ b/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.8.2) # Standard Zephyr application boilerplate. include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(smp_svr) target_sources(app PRIVATE src/main.c diff --git a/samples/subsys/nvs/CMakeLists.txt b/samples/subsys/nvs/CMakeLists.txt index ddea593ac3d..453e8e50c2e 100644 --- a/samples/subsys/nvs/CMakeLists.txt +++ b/samples/subsys/nvs/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(nvs) target_sources(app PRIVATE src/main.c) diff --git a/samples/subsys/power/power_mgr/CMakeLists.txt b/samples/subsys/power/power_mgr/CMakeLists.txt index 800ba5841af..847d75dbb22 100644 --- a/samples/subsys/power/power_mgr/CMakeLists.txt +++ b/samples/subsys/power/power_mgr/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(power_mgr) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/shell/shell_module/CMakeLists.txt b/samples/subsys/shell/shell_module/CMakeLists.txt index 800ba5841af..de42bf470fd 100644 --- a/samples/subsys/shell/shell_module/CMakeLists.txt +++ b/samples/subsys/shell/shell_module/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(shell_module) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/cdc_acm/CMakeLists.txt b/samples/subsys/usb/cdc_acm/CMakeLists.txt index 800ba5841af..2fec5d5e322 100644 --- a/samples/subsys/usb/cdc_acm/CMakeLists.txt +++ b/samples/subsys/usb/cdc_acm/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(cdc_acm) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/console/CMakeLists.txt b/samples/subsys/usb/console/CMakeLists.txt index 800ba5841af..da53490f724 100644 --- a/samples/subsys/usb/console/CMakeLists.txt +++ b/samples/subsys/usb/console/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(console) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/dfu/CMakeLists.txt b/samples/subsys/usb/dfu/CMakeLists.txt index 800ba5841af..8dc3efa82a3 100644 --- a/samples/subsys/usb/dfu/CMakeLists.txt +++ b/samples/subsys/usb/dfu/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dfu) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/hid-mouse/CMakeLists.txt b/samples/subsys/usb/hid-mouse/CMakeLists.txt index 800ba5841af..bf055247afd 100644 --- a/samples/subsys/usb/hid-mouse/CMakeLists.txt +++ b/samples/subsys/usb/hid-mouse/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hid-mouse) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/hid/CMakeLists.txt b/samples/subsys/usb/hid/CMakeLists.txt index 800ba5841af..cffc72a890d 100644 --- a/samples/subsys/usb/hid/CMakeLists.txt +++ b/samples/subsys/usb/hid/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(hid) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/mass/CMakeLists.txt b/samples/subsys/usb/mass/CMakeLists.txt index 800ba5841af..56358692da2 100644 --- a/samples/subsys/usb/mass/CMakeLists.txt +++ b/samples/subsys/usb/mass/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mass) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/testusb/CMakeLists.txt b/samples/subsys/usb/testusb/CMakeLists.txt index 800ba5841af..b09fc4e5072 100644 --- a/samples/subsys/usb/testusb/CMakeLists.txt +++ b/samples/subsys/usb/testusb/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(testusb) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/subsys/usb/webusb/CMakeLists.txt b/samples/subsys/usb/webusb/CMakeLists.txt index 800ba5841af..396270d2a74 100644 --- a/samples/subsys/usb/webusb/CMakeLists.txt +++ b/samples/subsys/usb/webusb/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(webusb) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/synchronization/CMakeLists.txt b/samples/synchronization/CMakeLists.txt index 5f27e454448..6af3dc66d4c 100644 --- a/samples/synchronization/CMakeLists.txt +++ b/samples/synchronization/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(synchronization) target_sources(app PRIVATE src/main.c) diff --git a/samples/testing/integration/CMakeLists.txt b/samples/testing/integration/CMakeLists.txt index 800ba5841af..08e12fa77c0 100644 --- a/samples/testing/integration/CMakeLists.txt +++ b/samples/testing/integration/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(integration) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/samples/xtensa_asm2/CMakeLists.txt b/samples/xtensa_asm2/CMakeLists.txt index 5ed595f2747..b47874a79bb 100644 --- a/samples/xtensa_asm2/CMakeLists.txt +++ b/samples/xtensa_asm2/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(xtensa_asm2) enable_language(ASM) diff --git a/tests/application_development/cpp/CMakeLists.txt b/tests/application_development/cpp/CMakeLists.txt index f2fd84e032a..f94064d3b73 100644 --- a/tests/application_development/cpp/CMakeLists.txt +++ b/tests/application_development/cpp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(cpp) FILE(GLOB app_sources src/*.cpp) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/application_development/gen_inc_file/CMakeLists.txt b/tests/application_development/gen_inc_file/CMakeLists.txt index cd2dea31009..59d8d492053 100644 --- a/tests/application_development/gen_inc_file/CMakeLists.txt +++ b/tests/application_development/gen_inc_file/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(gen_inc_file) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/app_kernel/CMakeLists.txt b/tests/benchmarks/app_kernel/CMakeLists.txt index 5d91d8447ea..e60bf1c89c8 100644 --- a/tests/benchmarks/app_kernel/CMakeLists.txt +++ b/tests/benchmarks/app_kernel/CMakeLists.txt @@ -4,7 +4,7 @@ if(BOARD STREQUAL "minnowboard") endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(app_kernel) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/boot_time/CMakeLists.txt b/tests/benchmarks/boot_time/CMakeLists.txt index 800ba5841af..b0718325b1c 100644 --- a/tests/benchmarks/boot_time/CMakeLists.txt +++ b/tests/benchmarks/boot_time/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(boot_time) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/footprint/CMakeLists.txt b/tests/benchmarks/footprint/CMakeLists.txt index 3bb08a3f71b..f1da9affe8e 100644 --- a/tests/benchmarks/footprint/CMakeLists.txt +++ b/tests/benchmarks/footprint/CMakeLists.txt @@ -14,7 +14,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(footprint) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/latency_measure/CMakeLists.txt b/tests/benchmarks/latency_measure/CMakeLists.txt index 09f5f54d300..bda0a5de5be 100644 --- a/tests/benchmarks/latency_measure/CMakeLists.txt +++ b/tests/benchmarks/latency_measure/CMakeLists.txt @@ -10,7 +10,7 @@ else() endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(latency_measure) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/object_footprint/CMakeLists.txt b/tests/benchmarks/object_footprint/CMakeLists.txt index af818872cf3..5f7cb7957f4 100644 --- a/tests/benchmarks/object_footprint/CMakeLists.txt +++ b/tests/benchmarks/object_footprint/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(object_footprint) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/sys_kernel/CMakeLists.txt b/tests/benchmarks/sys_kernel/CMakeLists.txt index 800ba5841af..a383f189ff9 100644 --- a/tests/benchmarks/sys_kernel/CMakeLists.txt +++ b/tests/benchmarks/sys_kernel/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sys_kernel) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/benchmarks/timing_info/CMakeLists.txt b/tests/benchmarks/timing_info/CMakeLists.txt index 9c738e05e1e..15292629e3b 100644 --- a/tests/benchmarks/timing_info/CMakeLists.txt +++ b/tests/benchmarks/timing_info/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(timing_info) FILE(GLOB app_sources src/[^u]*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/bluetooth/bluetooth/CMakeLists.txt b/tests/bluetooth/bluetooth/CMakeLists.txt index acec6cef1d1..3666222988a 100644 --- a/tests/bluetooth/bluetooth/CMakeLists.txt +++ b/tests/bluetooth/bluetooth/CMakeLists.txt @@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.8.2) set(NO_QEMU_SERIAL_BT_SERVER 1) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bluetooth) target_sources(app PRIVATE src/bluetooth.c) diff --git a/tests/bluetooth/init/CMakeLists.txt b/tests/bluetooth/init/CMakeLists.txt index 800ba5841af..0dd00b90d06 100644 --- a/tests/bluetooth/init/CMakeLists.txt +++ b/tests/bluetooth/init/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bluetooth_init) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/bluetooth/mesh/CMakeLists.txt b/tests/bluetooth/mesh/CMakeLists.txt index d8a96973c2e..69bc1b8d80a 100644 --- a/tests/bluetooth/mesh/CMakeLists.txt +++ b/tests/bluetooth/mesh/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mesh) zephyr_library_include_directories($ENV{ZEPHYR_BASE}/samples/bluetooth) target_sources(app PRIVATE src/main.c) diff --git a/tests/bluetooth/mesh_shell/CMakeLists.txt b/tests/bluetooth/mesh_shell/CMakeLists.txt index 800ba5841af..c2e13b74cc9 100644 --- a/tests/bluetooth/mesh_shell/CMakeLists.txt +++ b/tests/bluetooth/mesh_shell/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mesh_shell) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/bluetooth/shell/CMakeLists.txt b/tests/bluetooth/shell/CMakeLists.txt index 7f606e4a2fa..5bc0d9acce8 100644 --- a/tests/bluetooth/shell/CMakeLists.txt +++ b/tests/bluetooth/shell/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bluetooth_shell) zephyr_library_include_directories($ENV{ZEPHYR_BASE}/samples/bluetooth) diff --git a/tests/bluetooth/tester/CMakeLists.txt b/tests/bluetooth/tester/CMakeLists.txt index 404d24c5017..ea36b0b8aca 100644 --- a/tests/bluetooth/tester/CMakeLists.txt +++ b/tests/bluetooth/tester/CMakeLists.txt @@ -8,7 +8,7 @@ endif() LIST(APPEND QEMU_EXTRA_FLAGS -serial unix:/tmp/bt-stack-tester) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tester) zephyr_library_include_directories($ENV{ZEPHYR_BASE}/samples/bluetooth) target_sources(app PRIVATE diff --git a/tests/boards/altera_max10/i2c_master/CMakeLists.txt b/tests/boards/altera_max10/i2c_master/CMakeLists.txt index 800ba5841af..c8b4af9e980 100644 --- a/tests/boards/altera_max10/i2c_master/CMakeLists.txt +++ b/tests/boards/altera_max10/i2c_master/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(i2c_master) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/boards/altera_max10/msgdma/CMakeLists.txt b/tests/boards/altera_max10/msgdma/CMakeLists.txt index 800ba5841af..3377dc6dae2 100644 --- a/tests/boards/altera_max10/msgdma/CMakeLists.txt +++ b/tests/boards/altera_max10/msgdma/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(msgdma) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/boards/altera_max10/qspi/CMakeLists.txt b/tests/boards/altera_max10/qspi/CMakeLists.txt index 800ba5841af..212e5055aad 100644 --- a/tests/boards/altera_max10/qspi/CMakeLists.txt +++ b/tests/boards/altera_max10/qspi/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(qspi) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/boards/altera_max10/sysid/CMakeLists.txt b/tests/boards/altera_max10/sysid/CMakeLists.txt index 800ba5841af..8fb3f6b99db 100644 --- a/tests/boards/altera_max10/sysid/CMakeLists.txt +++ b/tests/boards/altera_max10/sysid/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sysid) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/boards/intel_s1000_crb/CMakeLists.txt b/tests/boards/intel_s1000_crb/CMakeLists.txt index 316c649a689..658b8d435c8 100644 --- a/tests/boards/intel_s1000_crb/CMakeLists.txt +++ b/tests/boards/intel_s1000_crb/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(intel_s1000_crb) if(CONFIG_I2C) target_sources(app PRIVATE src/i2c_test.c) diff --git a/tests/boards/native_posix/native_tasks/CMakeLists.txt b/tests/boards/native_posix/native_tasks/CMakeLists.txt index 800ba5841af..4493c483520 100644 --- a/tests/boards/native_posix/native_tasks/CMakeLists.txt +++ b/tests/boards/native_posix/native_tasks/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(native_tasks) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/boards/native_posix/rtc/CMakeLists.txt b/tests/boards/native_posix/rtc/CMakeLists.txt index 5f27e454448..8c1d404966f 100644 --- a/tests/boards/native_posix/rtc/CMakeLists.txt +++ b/tests/boards/native_posix/rtc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rtc) target_sources(app PRIVATE src/main.c) diff --git a/tests/booting/stub/CMakeLists.txt b/tests/booting/stub/CMakeLists.txt index d31247ae874..c629c300a3b 100644 --- a/tests/booting/stub/CMakeLists.txt +++ b/tests/booting/stub/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(stub) target_sources(app PRIVATE src/main.c) diff --git a/tests/cmsis_rtos_v1/CMakeLists.txt b/tests/cmsis_rtos_v1/CMakeLists.txt index 74370f9c09e..9498e171fd8 100644 --- a/tests/cmsis_rtos_v1/CMakeLists.txt +++ b/tests/cmsis_rtos_v1/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(cmsis_rtos_v1) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/include/cmsis_rtos_v1) FILE(GLOB app_sources src/*.c) diff --git a/tests/crypto/mbedtls/CMakeLists.txt b/tests/crypto/mbedtls/CMakeLists.txt index 800ba5841af..d44166a6722 100644 --- a/tests/crypto/mbedtls/CMakeLists.txt +++ b/tests/crypto/mbedtls/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mbedtls) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/crypto/rand32/CMakeLists.txt b/tests/crypto/rand32/CMakeLists.txt index a2cfd6a3c77..9db64ae89eb 100644 --- a/tests/crypto/rand32/CMakeLists.txt +++ b/tests/crypto/rand32/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rand32) zephyr_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/kernel/include/) diff --git a/tests/crypto/tinycrypt/CMakeLists.txt b/tests/crypto/tinycrypt/CMakeLists.txt index 800ba5841af..501ff9c4934 100644 --- a/tests/crypto/tinycrypt/CMakeLists.txt +++ b/tests/crypto/tinycrypt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tinycrypt) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt b/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt index 800ba5841af..8eb39b2065c 100644 --- a/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt +++ b/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tinycrypt_hmac_prng) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/adc/adc_api/CMakeLists.txt b/tests/drivers/adc/adc_api/CMakeLists.txt index d94f55d4153..66bd8c4c7a5 100644 --- a/tests/drivers/adc/adc_api/CMakeLists.txt +++ b/tests/drivers/adc/adc_api/CMakeLists.txt @@ -8,7 +8,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(adc_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/aio/api/CMakeLists.txt b/tests/drivers/aio/api/CMakeLists.txt index 800ba5841af..3b26e7d225e 100644 --- a/tests/drivers/aio/api/CMakeLists.txt +++ b/tests/drivers/aio/api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(aio_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/aio/app/CMakeLists.txt b/tests/drivers/aio/app/CMakeLists.txt index 800ba5841af..62dc678e7cf 100644 --- a/tests/drivers/aio/app/CMakeLists.txt +++ b/tests/drivers/aio/app/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(aio_app) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/aon_counter/aon_api/CMakeLists.txt b/tests/drivers/aon_counter/aon_api/CMakeLists.txt index 800ba5841af..5adcd0a8967 100644 --- a/tests/drivers/aon_counter/aon_api/CMakeLists.txt +++ b/tests/drivers/aon_counter/aon_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(aon_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/build_all/CMakeLists.txt b/tests/drivers/build_all/CMakeLists.txt index 800ba5841af..b73d198cedf 100644 --- a/tests/drivers/build_all/CMakeLists.txt +++ b/tests/drivers/build_all/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(build_all) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt b/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt index 800ba5841af..3322308f2cf 100644 --- a/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt +++ b/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(chan_blen_transfer) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/dma/loop_transfer/CMakeLists.txt b/tests/drivers/dma/loop_transfer/CMakeLists.txt index 800ba5841af..de846e7c168 100644 --- a/tests/drivers/dma/loop_transfer/CMakeLists.txt +++ b/tests/drivers/dma/loop_transfer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(loop_transfer) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/entropy/api/CMakeLists.txt b/tests/drivers/entropy/api/CMakeLists.txt index 800ba5841af..395bd81d208 100644 --- a/tests/drivers/entropy/api/CMakeLists.txt +++ b/tests/drivers/entropy/api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(entropy_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt b/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt index 800ba5841af..a2218611d84 100644 --- a/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt +++ b/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(gpio_basic_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/i2c/i2c_api/CMakeLists.txt b/tests/drivers/i2c/i2c_api/CMakeLists.txt index 800ba5841af..b3bc9013fca 100644 --- a/tests/drivers/i2c/i2c_api/CMakeLists.txt +++ b/tests/drivers/i2c/i2c_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(i2c_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt b/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt index 7134a90abe4..62de1630b6b 100644 --- a/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt +++ b/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt @@ -9,7 +9,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(i2c_slave_api) add_subdirectory(common) diff --git a/tests/drivers/i2s/i2s_api/CMakeLists.txt b/tests/drivers/i2s/i2s_api/CMakeLists.txt index 800ba5841af..73ed52dc9d1 100644 --- a/tests/drivers/i2s/i2s_api/CMakeLists.txt +++ b/tests/drivers/i2s/i2s_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(i2s_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/i2s/i2s_speed/CMakeLists.txt b/tests/drivers/i2s/i2s_speed/CMakeLists.txt index 800ba5841af..c38d204cf9c 100644 --- a/tests/drivers/i2s/i2s_speed/CMakeLists.txt +++ b/tests/drivers/i2s/i2s_speed/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(i2s_speed) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/ipm/CMakeLists.txt b/tests/drivers/ipm/CMakeLists.txt index 800ba5841af..d5c301c72e9 100644 --- a/tests/drivers/ipm/CMakeLists.txt +++ b/tests/drivers/ipm/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipm) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/pci_enum/CMakeLists.txt b/tests/drivers/pci_enum/CMakeLists.txt index 800ba5841af..2d25878e9a1 100644 --- a/tests/drivers/pci_enum/CMakeLists.txt +++ b/tests/drivers/pci_enum/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pci_enum) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/pinmux/pinmux_basic_api/CMakeLists.txt b/tests/drivers/pinmux/pinmux_basic_api/CMakeLists.txt index 800ba5841af..2bebe4ea7ff 100644 --- a/tests/drivers/pinmux/pinmux_basic_api/CMakeLists.txt +++ b/tests/drivers/pinmux/pinmux_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pinmux_basic_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/pwm/pwm_api/CMakeLists.txt b/tests/drivers/pwm/pwm_api/CMakeLists.txt index 800ba5841af..ec2c8d2764f 100644 --- a/tests/drivers/pwm/pwm_api/CMakeLists.txt +++ b/tests/drivers/pwm/pwm_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pwm_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/rtc/rtc_basic_api/CMakeLists.txt b/tests/drivers/rtc/rtc_basic_api/CMakeLists.txt index 800ba5841af..3cd11a5faea 100644 --- a/tests/drivers/rtc/rtc_basic_api/CMakeLists.txt +++ b/tests/drivers/rtc/rtc_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rtc_basic_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/spi/spi_loopback/CMakeLists.txt b/tests/drivers/spi/spi_loopback/CMakeLists.txt index 9e3736c5b6d..2c39801b2e7 100644 --- a/tests/drivers/spi/spi_loopback/CMakeLists.txt +++ b/tests/drivers/spi/spi_loopback/CMakeLists.txt @@ -11,7 +11,7 @@ macro(set_conf_file) endmacro() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(spi_loopback) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/drivers/uart/uart_basic_api/CMakeLists.txt b/tests/drivers/uart/uart_basic_api/CMakeLists.txt index e3f9de88fd6..547362f46ed 100644 --- a/tests/drivers/uart/uart_basic_api/CMakeLists.txt +++ b/tests/drivers/uart/uart_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(uart_basic_api) target_sources(app PRIVATE src/main.c diff --git a/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt b/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt index 800ba5841af..7279a6b41d4 100644 --- a/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt +++ b/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(wdt_basic_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/alert/alert_api/CMakeLists.txt b/tests/kernel/alert/alert_api/CMakeLists.txt index 800ba5841af..2aa0f67f112 100644 --- a/tests/kernel/alert/alert_api/CMakeLists.txt +++ b/tests/kernel/alert/alert_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(alert_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/arm_irq_vector_table/CMakeLists.txt b/tests/kernel/arm_irq_vector_table/CMakeLists.txt index af818872cf3..410bf318bb3 100644 --- a/tests/kernel/arm_irq_vector_table/CMakeLists.txt +++ b/tests/kernel/arm_irq_vector_table/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(arm_irq_vector_table) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/arm_runtime_nmi/CMakeLists.txt b/tests/kernel/arm_runtime_nmi/CMakeLists.txt index 800ba5841af..21541cf8122 100644 --- a/tests/kernel/arm_runtime_nmi/CMakeLists.txt +++ b/tests/kernel/arm_runtime_nmi/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(arm_runtime_nmi) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/boot_page_table/CMakeLists.txt b/tests/kernel/boot_page_table/CMakeLists.txt index 800ba5841af..330a765a616 100644 --- a/tests/kernel/boot_page_table/CMakeLists.txt +++ b/tests/kernel/boot_page_table/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(boot_page_table) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/common/CMakeLists.txt b/tests/kernel/common/CMakeLists.txt index 7a4dad04ba5..41223f169f9 100644 --- a/tests/kernel/common/CMakeLists.txt +++ b/tests/kernel/common/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(kernel_common) if(NOT CONFIG_ARM) target_sources(app PRIVATE diff --git a/tests/kernel/context/CMakeLists.txt b/tests/kernel/context/CMakeLists.txt index 800ba5841af..038c63ef357 100644 --- a/tests/kernel/context/CMakeLists.txt +++ b/tests/kernel/context/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(kernel_context) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/critical/CMakeLists.txt b/tests/kernel/critical/CMakeLists.txt index 800ba5841af..9038e2eaf51 100644 --- a/tests/kernel/critical/CMakeLists.txt +++ b/tests/kernel/critical/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(critical) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/device/CMakeLists.txt b/tests/kernel/device/CMakeLists.txt index 800ba5841af..80dc9002be8 100644 --- a/tests/kernel/device/CMakeLists.txt +++ b/tests/kernel/device/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(device) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/early_sleep/CMakeLists.txt b/tests/kernel/early_sleep/CMakeLists.txt index 800ba5841af..d64d969af90 100644 --- a/tests/kernel/early_sleep/CMakeLists.txt +++ b/tests/kernel/early_sleep/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(early_sleep) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/errno/CMakeLists.txt b/tests/kernel/errno/CMakeLists.txt index 800ba5841af..847c739b0f6 100644 --- a/tests/kernel/errno/CMakeLists.txt +++ b/tests/kernel/errno/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(errno) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/fatal/CMakeLists.txt b/tests/kernel/fatal/CMakeLists.txt index 800ba5841af..a5a3a44736c 100644 --- a/tests/kernel/fatal/CMakeLists.txt +++ b/tests/kernel/fatal/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fatal) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/fifo/fifo_api/CMakeLists.txt b/tests/kernel/fifo/fifo_api/CMakeLists.txt index 800ba5841af..e55569dea9b 100644 --- a/tests/kernel/fifo/fifo_api/CMakeLists.txt +++ b/tests/kernel/fifo/fifo_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fifo_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/fifo/fifo_timeout/CMakeLists.txt b/tests/kernel/fifo/fifo_timeout/CMakeLists.txt index 800ba5841af..fe13ad243bf 100644 --- a/tests/kernel/fifo/fifo_timeout/CMakeLists.txt +++ b/tests/kernel/fifo/fifo_timeout/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fifo_timeout) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/fifo/fifo_usage/CMakeLists.txt b/tests/kernel/fifo/fifo_usage/CMakeLists.txt index 800ba5841af..e918091f553 100644 --- a/tests/kernel/fifo/fifo_usage/CMakeLists.txt +++ b/tests/kernel/fifo/fifo_usage/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fifo_usage) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/fp_sharing/CMakeLists.txt b/tests/kernel/fp_sharing/CMakeLists.txt index fb1d4e25d09..02fb17c0586 100644 --- a/tests/kernel/fp_sharing/CMakeLists.txt +++ b/tests/kernel/fp_sharing/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fp_sharing) # Some boards are significantly slower than others resulting in the test # output being in the range of every few seconds to every few minutes. To diff --git a/tests/kernel/gen_isr_table/CMakeLists.txt b/tests/kernel/gen_isr_table/CMakeLists.txt index 800ba5841af..7547aaae365 100644 --- a/tests/kernel/gen_isr_table/CMakeLists.txt +++ b/tests/kernel/gen_isr_table/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(gen_isr_table) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/init/CMakeLists.txt b/tests/kernel/init/CMakeLists.txt index 800ba5841af..10ba27a2fa0 100644 --- a/tests/kernel/init/CMakeLists.txt +++ b/tests/kernel/init/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(kernel_init) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/interrupt/CMakeLists.txt b/tests/kernel/interrupt/CMakeLists.txt index 800ba5841af..dc5cb1afec4 100644 --- a/tests/kernel/interrupt/CMakeLists.txt +++ b/tests/kernel/interrupt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(interrupt) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/irq_offload/CMakeLists.txt b/tests/kernel/irq_offload/CMakeLists.txt index 800ba5841af..b56614cc7bb 100644 --- a/tests/kernel/irq_offload/CMakeLists.txt +++ b/tests/kernel/irq_offload/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(irq_offload) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/lifo/lifo_api/CMakeLists.txt b/tests/kernel/lifo/lifo_api/CMakeLists.txt index 800ba5841af..f8ca8bbe205 100644 --- a/tests/kernel/lifo/lifo_api/CMakeLists.txt +++ b/tests/kernel/lifo/lifo_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lifo_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/lifo/lifo_usage/CMakeLists.txt b/tests/kernel/lifo/lifo_usage/CMakeLists.txt index 800ba5841af..e4777a88641 100644 --- a/tests/kernel/lifo/lifo_usage/CMakeLists.txt +++ b/tests/kernel/lifo/lifo_usage/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lifo_usage) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mbox/mbox_api/CMakeLists.txt b/tests/kernel/mbox/mbox_api/CMakeLists.txt index 800ba5841af..0521a35ca9e 100644 --- a/tests/kernel/mbox/mbox_api/CMakeLists.txt +++ b/tests/kernel/mbox/mbox_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mbox_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mbox/mbox_usage/CMakeLists.txt b/tests/kernel/mbox/mbox_usage/CMakeLists.txt index 800ba5841af..62c83283217 100644 --- a/tests/kernel/mbox/mbox_usage/CMakeLists.txt +++ b/tests/kernel/mbox/mbox_usage/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mbox_usage) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt b/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt index 800ba5841af..e45df03f90e 100644 --- a/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt +++ b/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mheap_api_concept) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_pool/mem_pool/CMakeLists.txt b/tests/kernel/mem_pool/mem_pool/CMakeLists.txt index 800ba5841af..aa619e4d0c3 100644 --- a/tests/kernel/mem_pool/mem_pool/CMakeLists.txt +++ b/tests/kernel/mem_pool/mem_pool/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_pool) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_pool/mem_pool_api/CMakeLists.txt b/tests/kernel/mem_pool/mem_pool_api/CMakeLists.txt index 800ba5841af..9872dd3d863 100644 --- a/tests/kernel/mem_pool/mem_pool_api/CMakeLists.txt +++ b/tests/kernel/mem_pool/mem_pool_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_pool_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_pool/mem_pool_concept/CMakeLists.txt b/tests/kernel/mem_pool/mem_pool_concept/CMakeLists.txt index 800ba5841af..ac982471b46 100644 --- a/tests/kernel/mem_pool/mem_pool_concept/CMakeLists.txt +++ b/tests/kernel/mem_pool/mem_pool_concept/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_pool_concept) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_pool/mem_pool_threadsafe/CMakeLists.txt b/tests/kernel/mem_pool/mem_pool_threadsafe/CMakeLists.txt index 800ba5841af..25f16c6719f 100644 --- a/tests/kernel/mem_pool/mem_pool_threadsafe/CMakeLists.txt +++ b/tests/kernel/mem_pool/mem_pool_threadsafe/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_pool_threadsafe) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_pool/sys_mem_pool/CMakeLists.txt b/tests/kernel/mem_pool/sys_mem_pool/CMakeLists.txt index 800ba5841af..3389d4354cf 100644 --- a/tests/kernel/mem_pool/sys_mem_pool/CMakeLists.txt +++ b/tests/kernel/mem_pool/sys_mem_pool/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sys_mem_pool) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/app_memory/CMakeLists.txt b/tests/kernel/mem_protect/app_memory/CMakeLists.txt index 800ba5841af..1bafecc1560 100644 --- a/tests/kernel/mem_protect/app_memory/CMakeLists.txt +++ b/tests/kernel/mem_protect/app_memory/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(app_memory) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/mem_protect/CMakeLists.txt b/tests/kernel/mem_protect/mem_protect/CMakeLists.txt index 800ba5841af..11534a70157 100644 --- a/tests/kernel/mem_protect/mem_protect/CMakeLists.txt +++ b/tests/kernel/mem_protect/mem_protect/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_protect) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/obj_validation/CMakeLists.txt b/tests/kernel/mem_protect/obj_validation/CMakeLists.txt index 800ba5841af..09a3d4cd9bb 100644 --- a/tests/kernel/mem_protect/obj_validation/CMakeLists.txt +++ b/tests/kernel/mem_protect/obj_validation/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(obj_validation) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/protection/CMakeLists.txt b/tests/kernel/mem_protect/protection/CMakeLists.txt index 800ba5841af..506e9ab15f7 100644 --- a/tests/kernel/mem_protect/protection/CMakeLists.txt +++ b/tests/kernel/mem_protect/protection/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(protection) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/stack_random/CMakeLists.txt b/tests/kernel/mem_protect/stack_random/CMakeLists.txt index 800ba5841af..03aa8dd81e9 100644 --- a/tests/kernel/mem_protect/stack_random/CMakeLists.txt +++ b/tests/kernel/mem_protect/stack_random/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(stack_random) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/stackprot/CMakeLists.txt b/tests/kernel/mem_protect/stackprot/CMakeLists.txt index 800ba5841af..e0a40179ce4 100644 --- a/tests/kernel/mem_protect/stackprot/CMakeLists.txt +++ b/tests/kernel/mem_protect/stackprot/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(stackprot) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/syscalls/CMakeLists.txt b/tests/kernel/mem_protect/syscalls/CMakeLists.txt index 800ba5841af..9351c16b250 100644 --- a/tests/kernel/mem_protect/syscalls/CMakeLists.txt +++ b/tests/kernel/mem_protect/syscalls/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(syscalls) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/userspace/CMakeLists.txt b/tests/kernel/mem_protect/userspace/CMakeLists.txt index 800ba5841af..745c9fe5f6e 100644 --- a/tests/kernel/mem_protect/userspace/CMakeLists.txt +++ b/tests/kernel/mem_protect/userspace/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(userspace) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_protect/x86_mmu_api/CMakeLists.txt b/tests/kernel/mem_protect/x86_mmu_api/CMakeLists.txt index 1a2ce3aeca9..fad027a7f95 100644 --- a/tests/kernel/mem_protect/x86_mmu_api/CMakeLists.txt +++ b/tests/kernel/mem_protect/x86_mmu_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(x86_mmu_api) file(GLOB source_for_app src/*.c) diff --git a/tests/kernel/mem_slab/mslab/CMakeLists.txt b/tests/kernel/mem_slab/mslab/CMakeLists.txt index 800ba5841af..8e7e97a1aa7 100644 --- a/tests/kernel/mem_slab/mslab/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mslab) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_slab/mslab_api/CMakeLists.txt b/tests/kernel/mem_slab/mslab_api/CMakeLists.txt index 800ba5841af..895c6b4a155 100644 --- a/tests/kernel/mem_slab/mslab_api/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mslab_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt b/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt index 800ba5841af..a433e9adb0a 100644 --- a/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mslab_concept) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt b/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt index 800ba5841af..e6208ff516c 100644 --- a/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mslab_threadsafe) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mp/CMakeLists.txt b/tests/kernel/mp/CMakeLists.txt index d31247ae874..728ce8f831b 100644 --- a/tests/kernel/mp/CMakeLists.txt +++ b/tests/kernel/mp/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mp) target_sources(app PRIVATE src/main.c) diff --git a/tests/kernel/msgq/msgq_api/CMakeLists.txt b/tests/kernel/msgq/msgq_api/CMakeLists.txt index 800ba5841af..2737d917bb0 100644 --- a/tests/kernel/msgq/msgq_api/CMakeLists.txt +++ b/tests/kernel/msgq/msgq_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(msgq_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mutex/mutex/CMakeLists.txt b/tests/kernel/mutex/mutex/CMakeLists.txt index 800ba5841af..f4e57ba763d 100644 --- a/tests/kernel/mutex/mutex/CMakeLists.txt +++ b/tests/kernel/mutex/mutex/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mutex) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/mutex/mutex_api/CMakeLists.txt b/tests/kernel/mutex/mutex_api/CMakeLists.txt index 800ba5841af..c534c602d88 100644 --- a/tests/kernel/mutex/mutex_api/CMakeLists.txt +++ b/tests/kernel/mutex/mutex_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mutex_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/obj_tracing/CMakeLists.txt b/tests/kernel/obj_tracing/CMakeLists.txt index 800ba5841af..7beee705a93 100644 --- a/tests/kernel/obj_tracing/CMakeLists.txt +++ b/tests/kernel/obj_tracing/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(obj_tracing) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/pending/CMakeLists.txt b/tests/kernel/pending/CMakeLists.txt index 800ba5841af..ffe4e7d5861 100644 --- a/tests/kernel/pending/CMakeLists.txt +++ b/tests/kernel/pending/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pending) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/pipe/pipe/CMakeLists.txt b/tests/kernel/pipe/pipe/CMakeLists.txt index 800ba5841af..722dee941a1 100644 --- a/tests/kernel/pipe/pipe/CMakeLists.txt +++ b/tests/kernel/pipe/pipe/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pipe) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/pipe/pipe_api/CMakeLists.txt b/tests/kernel/pipe/pipe_api/CMakeLists.txt index 800ba5841af..3dddf1c3399 100644 --- a/tests/kernel/pipe/pipe_api/CMakeLists.txt +++ b/tests/kernel/pipe/pipe_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(pipe_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/poll/CMakeLists.txt b/tests/kernel/poll/CMakeLists.txt index 800ba5841af..41faa5986c2 100644 --- a/tests/kernel/poll/CMakeLists.txt +++ b/tests/kernel/poll/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(poll) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/profiling/profiling_api/CMakeLists.txt b/tests/kernel/profiling/profiling_api/CMakeLists.txt index 800ba5841af..0c1612172d8 100644 --- a/tests/kernel/profiling/profiling_api/CMakeLists.txt +++ b/tests/kernel/profiling/profiling_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(profiling_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/queue/CMakeLists.txt b/tests/kernel/queue/CMakeLists.txt index 800ba5841af..3a021c2ba07 100644 --- a/tests/kernel/queue/CMakeLists.txt +++ b/tests/kernel/queue/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(queue) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/sched/deadline/CMakeLists.txt b/tests/kernel/sched/deadline/CMakeLists.txt index 800ba5841af..1fd416a5d6c 100644 --- a/tests/kernel/sched/deadline/CMakeLists.txt +++ b/tests/kernel/sched/deadline/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(deadline) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/sched/preempt/CMakeLists.txt b/tests/kernel/sched/preempt/CMakeLists.txt index 800ba5841af..2eb7922f59c 100644 --- a/tests/kernel/sched/preempt/CMakeLists.txt +++ b/tests/kernel/sched/preempt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(preempt) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/sched/schedule_api/CMakeLists.txt b/tests/kernel/sched/schedule_api/CMakeLists.txt index 800ba5841af..74c98d72308 100644 --- a/tests/kernel/sched/schedule_api/CMakeLists.txt +++ b/tests/kernel/sched/schedule_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(schedule_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/semaphore/sema_api/CMakeLists.txt b/tests/kernel/semaphore/sema_api/CMakeLists.txt index 800ba5841af..bdb7160410a 100644 --- a/tests/kernel/semaphore/sema_api/CMakeLists.txt +++ b/tests/kernel/semaphore/sema_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sema_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/semaphore/semaphore/CMakeLists.txt b/tests/kernel/semaphore/semaphore/CMakeLists.txt index 800ba5841af..1f98e9135f5 100644 --- a/tests/kernel/semaphore/semaphore/CMakeLists.txt +++ b/tests/kernel/semaphore/semaphore/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(semaphore) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/sleep/CMakeLists.txt b/tests/kernel/sleep/CMakeLists.txt index 800ba5841af..3817641508d 100644 --- a/tests/kernel/sleep/CMakeLists.txt +++ b/tests/kernel/sleep/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sleep) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/smp/CMakeLists.txt b/tests/kernel/smp/CMakeLists.txt index d31247ae874..0af433a1554 100644 --- a/tests/kernel/smp/CMakeLists.txt +++ b/tests/kernel/smp/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(smp) target_sources(app PRIVATE src/main.c) diff --git a/tests/kernel/spinlock/CMakeLists.txt b/tests/kernel/spinlock/CMakeLists.txt index d31247ae874..fac30100709 100644 --- a/tests/kernel/spinlock/CMakeLists.txt +++ b/tests/kernel/spinlock/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(spinlock) target_sources(app PRIVATE src/main.c) diff --git a/tests/kernel/stack/stack_api/CMakeLists.txt b/tests/kernel/stack/stack_api/CMakeLists.txt index 800ba5841af..ece5d519bf6 100644 --- a/tests/kernel/stack/stack_api/CMakeLists.txt +++ b/tests/kernel/stack/stack_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(stack_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/stack/stack_usage/CMakeLists.txt b/tests/kernel/stack/stack_usage/CMakeLists.txt index 800ba5841af..4ff1f20d762 100644 --- a/tests/kernel/stack/stack_usage/CMakeLists.txt +++ b/tests/kernel/stack/stack_usage/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(stack_usage) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/static_idt/CMakeLists.txt b/tests/kernel/static_idt/CMakeLists.txt index bcc579c2a8d..27edfd25d98 100644 --- a/tests/kernel/static_idt/CMakeLists.txt +++ b/tests/kernel/static_idt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(static_idt) enable_language(C ASM) diff --git a/tests/kernel/threads/dynamic_thread/CMakeLists.txt b/tests/kernel/threads/dynamic_thread/CMakeLists.txt index 800ba5841af..d51b1e4ef5f 100644 --- a/tests/kernel/threads/dynamic_thread/CMakeLists.txt +++ b/tests/kernel/threads/dynamic_thread/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dynamic_thread) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/threads/no-multithreading/CMakeLists.txt b/tests/kernel/threads/no-multithreading/CMakeLists.txt index 800ba5841af..f254b035b4e 100644 --- a/tests/kernel/threads/no-multithreading/CMakeLists.txt +++ b/tests/kernel/threads/no-multithreading/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(no-multithreading) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/threads/thread_apis/CMakeLists.txt b/tests/kernel/threads/thread_apis/CMakeLists.txt index 800ba5841af..fb1834df00d 100644 --- a/tests/kernel/threads/thread_apis/CMakeLists.txt +++ b/tests/kernel/threads/thread_apis/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(thread_apis) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/threads/thread_init/CMakeLists.txt b/tests/kernel/threads/thread_init/CMakeLists.txt index 800ba5841af..cb253a65b47 100644 --- a/tests/kernel/threads/thread_init/CMakeLists.txt +++ b/tests/kernel/threads/thread_init/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(thread_init) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/tickless/tickless/CMakeLists.txt b/tests/kernel/tickless/tickless/CMakeLists.txt index dc0e7bf419f..82d5b81a787 100644 --- a/tests/kernel/tickless/tickless/CMakeLists.txt +++ b/tests/kernel/tickless/tickless/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tickless) target_sources(app PRIVATE src/main.c) target_sources_ifdef(CONFIG_ARM app PRIVATE src/timestamps.c) diff --git a/tests/kernel/tickless/tickless_concept/CMakeLists.txt b/tests/kernel/tickless/tickless_concept/CMakeLists.txt index 800ba5841af..77e95c49b1e 100644 --- a/tests/kernel/tickless/tickless_concept/CMakeLists.txt +++ b/tests/kernel/tickless/tickless_concept/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tickless_concept) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/timer/timer_api/CMakeLists.txt b/tests/kernel/timer/timer_api/CMakeLists.txt index 800ba5841af..a95e3dd12fe 100644 --- a/tests/kernel/timer/timer_api/CMakeLists.txt +++ b/tests/kernel/timer/timer_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(timer_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/timer/timer_monotonic/CMakeLists.txt b/tests/kernel/timer/timer_monotonic/CMakeLists.txt index 800ba5841af..b78d085d69e 100644 --- a/tests/kernel/timer/timer_monotonic/CMakeLists.txt +++ b/tests/kernel/timer/timer_monotonic/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(timer_monotonic) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/workq/work_queue/CMakeLists.txt b/tests/kernel/workq/work_queue/CMakeLists.txt index 800ba5841af..3fa79e8ae8b 100644 --- a/tests/kernel/workq/work_queue/CMakeLists.txt +++ b/tests/kernel/workq/work_queue/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(work_queue) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/workq/work_queue_api/CMakeLists.txt b/tests/kernel/workq/work_queue_api/CMakeLists.txt index 800ba5841af..102db3dfb3e 100644 --- a/tests/kernel/workq/work_queue_api/CMakeLists.txt +++ b/tests/kernel/workq/work_queue_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(work_queue_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/kernel/xip/CMakeLists.txt b/tests/kernel/xip/CMakeLists.txt index 800ba5841af..cdc697421f2 100644 --- a/tests/kernel/xip/CMakeLists.txt +++ b/tests/kernel/xip/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(xip) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/lib/base64/CMakeLists.txt b/tests/lib/base64/CMakeLists.txt index 800ba5841af..9895384574c 100644 --- a/tests/lib/base64/CMakeLists.txt +++ b/tests/lib/base64/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(base64) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/lib/c_lib/CMakeLists.txt b/tests/lib/c_lib/CMakeLists.txt index 800ba5841af..7189ffec169 100644 --- a/tests/lib/c_lib/CMakeLists.txt +++ b/tests/lib/c_lib/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(c_lib) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/lib/json/CMakeLists.txt b/tests/lib/json/CMakeLists.txt index 800ba5841af..14fda613fcb 100644 --- a/tests/lib/json/CMakeLists.txt +++ b/tests/lib/json/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(json) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/lib/mem_alloc/CMakeLists.txt b/tests/lib/mem_alloc/CMakeLists.txt index 800ba5841af..4c9fc0416ad 100644 --- a/tests/lib/mem_alloc/CMakeLists.txt +++ b/tests/lib/mem_alloc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mem_alloc) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/lib/rbtree/CMakeLists.txt b/tests/lib/rbtree/CMakeLists.txt index d31247ae874..cefc80b0a56 100644 --- a/tests/lib/rbtree/CMakeLists.txt +++ b/tests/lib/rbtree/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rbtree) target_sources(app PRIVATE src/main.c) diff --git a/tests/lib/ringbuffer/CMakeLists.txt b/tests/lib/ringbuffer/CMakeLists.txt index 800ba5841af..3b0fe0572f0 100644 --- a/tests/lib/ringbuffer/CMakeLists.txt +++ b/tests/lib/ringbuffer/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ringbuffer) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/lib/sprintf/CMakeLists.txt b/tests/lib/sprintf/CMakeLists.txt index 800ba5841af..e803635e1f9 100644 --- a/tests/lib/sprintf/CMakeLists.txt +++ b/tests/lib/sprintf/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(sprintf) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/misc/test_build/CMakeLists.txt b/tests/misc/test_build/CMakeLists.txt index 800ba5841af..b688cc4b9df 100644 --- a/tests/misc/test_build/CMakeLists.txt +++ b/tests/misc/test_build/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(test_build) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/6lo/CMakeLists.txt b/tests/net/6lo/CMakeLists.txt index ee40bd1c973..0f37e603776 100644 --- a/tests/net/6lo/CMakeLists.txt +++ b/tests/net/6lo/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(6lo) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/all/CMakeLists.txt b/tests/net/all/CMakeLists.txt index 800ba5841af..6c28ffab809 100644 --- a/tests/net/all/CMakeLists.txt +++ b/tests/net/all/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(all) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/app/CMakeLists.txt b/tests/net/app/CMakeLists.txt index f6e612e2355..f219761ecd0 100644 --- a/tests/net/app/CMakeLists.txt +++ b/tests/net/app/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(net_app) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/arp/CMakeLists.txt b/tests/net/arp/CMakeLists.txt index 66d431c7448..24ced553d61 100644 --- a/tests/net/arp/CMakeLists.txt +++ b/tests/net/arp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(arp) target_include_directories( app diff --git a/tests/net/buf/CMakeLists.txt b/tests/net/buf/CMakeLists.txt index ee40bd1c973..2a398618704 100644 --- a/tests/net/buf/CMakeLists.txt +++ b/tests/net/buf/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(buf) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/checksum_offload/CMakeLists.txt b/tests/net/checksum_offload/CMakeLists.txt index ee40bd1c973..a0f6871b125 100644 --- a/tests/net/checksum_offload/CMakeLists.txt +++ b/tests/net/checksum_offload/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(checksum_offload) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/context/CMakeLists.txt b/tests/net/context/CMakeLists.txt index ee40bd1c973..f08a500065c 100644 --- a/tests/net/context/CMakeLists.txt +++ b/tests/net/context/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(net_context) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/dhcpv4/CMakeLists.txt b/tests/net/dhcpv4/CMakeLists.txt index ee40bd1c973..eb8af6fee9d 100644 --- a/tests/net/dhcpv4/CMakeLists.txt +++ b/tests/net/dhcpv4/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dhcpv4) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/ethernet_mgmt/CMakeLists.txt b/tests/net/ethernet_mgmt/CMakeLists.txt index 800ba5841af..bfde1b86b47 100644 --- a/tests/net/ethernet_mgmt/CMakeLists.txt +++ b/tests/net/ethernet_mgmt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ethernet_mgmt) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/icmpv6/CMakeLists.txt b/tests/net/icmpv6/CMakeLists.txt index ee40bd1c973..9d5083105c7 100644 --- a/tests/net/icmpv6/CMakeLists.txt +++ b/tests/net/icmpv6/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(icmpv6) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/ieee802154/crypto/CMakeLists.txt b/tests/net/ieee802154/crypto/CMakeLists.txt index 6c063a4dfef..98c28f5f1fd 100644 --- a/tests/net/ieee802154/crypto/CMakeLists.txt +++ b/tests/net/ieee802154/crypto/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(crypto) target_include_directories( app diff --git a/tests/net/ieee802154/fragment/CMakeLists.txt b/tests/net/ieee802154/fragment/CMakeLists.txt index 6c063a4dfef..92fa2076acd 100644 --- a/tests/net/ieee802154/fragment/CMakeLists.txt +++ b/tests/net/ieee802154/fragment/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fragment) target_include_directories( app diff --git a/tests/net/ieee802154/l2/CMakeLists.txt b/tests/net/ieee802154/l2/CMakeLists.txt index 6c063a4dfef..274305d86e0 100644 --- a/tests/net/ieee802154/l2/CMakeLists.txt +++ b/tests/net/ieee802154/l2/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(l2) target_include_directories( app diff --git a/tests/net/iface/CMakeLists.txt b/tests/net/iface/CMakeLists.txt index ee40bd1c973..c54593abbee 100644 --- a/tests/net/iface/CMakeLists.txt +++ b/tests/net/iface/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(iface) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/ip-addr/CMakeLists.txt b/tests/net/ip-addr/CMakeLists.txt index ee40bd1c973..b7475d95d58 100644 --- a/tests/net/ip-addr/CMakeLists.txt +++ b/tests/net/ip-addr/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ip-addr) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/ipv6/CMakeLists.txt b/tests/net/ipv6/CMakeLists.txt index ee40bd1c973..ccc0fa2db4a 100644 --- a/tests/net/ipv6/CMakeLists.txt +++ b/tests/net/ipv6/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipv6) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/ipv6_fragment/CMakeLists.txt b/tests/net/ipv6_fragment/CMakeLists.txt index ee40bd1c973..29a53d7ca84 100644 --- a/tests/net/ipv6_fragment/CMakeLists.txt +++ b/tests/net/ipv6_fragment/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(ipv6_fragment) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/lib/coap/CMakeLists.txt b/tests/net/lib/coap/CMakeLists.txt index 800ba5841af..9bd2b8eac81 100644 --- a/tests/net/lib/coap/CMakeLists.txt +++ b/tests/net/lib/coap/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(coap) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/lib/dns_packet/CMakeLists.txt b/tests/net/lib/dns_packet/CMakeLists.txt index 800ba5841af..c4f1102e45b 100644 --- a/tests/net/lib/dns_packet/CMakeLists.txt +++ b/tests/net/lib/dns_packet/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dns_packet) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/lib/dns_resolve/CMakeLists.txt b/tests/net/lib/dns_resolve/CMakeLists.txt index ee40bd1c973..cf2a22b102b 100644 --- a/tests/net/lib/dns_resolve/CMakeLists.txt +++ b/tests/net/lib/dns_resolve/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(dns_resolve) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/lib/http_header_fields/CMakeLists.txt b/tests/net/lib/http_header_fields/CMakeLists.txt index ee40bd1c973..ef31cd39fd9 100644 --- a/tests/net/lib/http_header_fields/CMakeLists.txt +++ b/tests/net/lib/http_header_fields/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(http_header_fields) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/lib/mqtt_packet/CMakeLists.txt b/tests/net/lib/mqtt_packet/CMakeLists.txt index 450c717355c..3e888b76a1c 100644 --- a/tests/net/lib/mqtt_packet/CMakeLists.txt +++ b/tests/net/lib/mqtt_packet/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mqtt_packet) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip diff --git a/tests/net/lib/mqtt_publisher/CMakeLists.txt b/tests/net/lib/mqtt_publisher/CMakeLists.txt index 450c717355c..e376dc5df1a 100644 --- a/tests/net/lib/mqtt_publisher/CMakeLists.txt +++ b/tests/net/lib/mqtt_publisher/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mqtt_publisher) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip diff --git a/tests/net/lib/mqtt_subscriber/CMakeLists.txt b/tests/net/lib/mqtt_subscriber/CMakeLists.txt index 450c717355c..ba919694eb9 100644 --- a/tests/net/lib/mqtt_subscriber/CMakeLists.txt +++ b/tests/net/lib/mqtt_subscriber/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mqtt_subscriber) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip diff --git a/tests/net/lib/tls_credentials/CMakeLists.txt b/tests/net/lib/tls_credentials/CMakeLists.txt index d3ee38f8a63..47bea439e3f 100644 --- a/tests/net/lib/tls_credentials/CMakeLists.txt +++ b/tests/net/lib/tls_credentials/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tls_credentials) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/lib/tls_credentials) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/mgmt/CMakeLists.txt b/tests/net/mgmt/CMakeLists.txt index ee40bd1c973..a60ea6c3f65 100644 --- a/tests/net/mgmt/CMakeLists.txt +++ b/tests/net/mgmt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mgmt) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/mld/CMakeLists.txt b/tests/net/mld/CMakeLists.txt index ee40bd1c973..96ade0c6697 100644 --- a/tests/net/mld/CMakeLists.txt +++ b/tests/net/mld/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mld) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/neighbor/CMakeLists.txt b/tests/net/neighbor/CMakeLists.txt index ee40bd1c973..e81cae400ef 100644 --- a/tests/net/neighbor/CMakeLists.txt +++ b/tests/net/neighbor/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(neighbor) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/net_pkt/CMakeLists.txt b/tests/net/net_pkt/CMakeLists.txt index ee40bd1c973..7be9aa55003 100644 --- a/tests/net/net_pkt/CMakeLists.txt +++ b/tests/net/net_pkt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(net_pkt) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/promiscuous/CMakeLists.txt b/tests/net/promiscuous/CMakeLists.txt index ee40bd1c973..5ad0bd997ac 100644 --- a/tests/net/promiscuous/CMakeLists.txt +++ b/tests/net/promiscuous/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(promiscuous) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/ptp/clock/CMakeLists.txt b/tests/net/ptp/clock/CMakeLists.txt index ee40bd1c973..cdd16e8ff1a 100644 --- a/tests/net/ptp/clock/CMakeLists.txt +++ b/tests/net/ptp/clock/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(clock) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/route/CMakeLists.txt b/tests/net/route/CMakeLists.txt index ee40bd1c973..95e247b0504 100644 --- a/tests/net/route/CMakeLists.txt +++ b/tests/net/route/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(route) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/rpl/CMakeLists.txt b/tests/net/rpl/CMakeLists.txt index ee40bd1c973..4f7b6818912 100644 --- a/tests/net/rpl/CMakeLists.txt +++ b/tests/net/rpl/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(rpl) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/socket/getaddrinfo/CMakeLists.txt b/tests/net/socket/getaddrinfo/CMakeLists.txt index 800ba5841af..8c3d735d8e8 100644 --- a/tests/net/socket/getaddrinfo/CMakeLists.txt +++ b/tests/net/socket/getaddrinfo/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(getaddrinfo) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/net/socket/tcp/CMakeLists.txt b/tests/net/socket/tcp/CMakeLists.txt index ee40bd1c973..04621c48b27 100644 --- a/tests/net/socket/tcp/CMakeLists.txt +++ b/tests/net/socket/tcp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(socket_tcp) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/socket/udp/CMakeLists.txt b/tests/net/socket/udp/CMakeLists.txt index ee40bd1c973..9afe153ed81 100644 --- a/tests/net/socket/udp/CMakeLists.txt +++ b/tests/net/socket/udp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(socket_udp) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/tcp/CMakeLists.txt b/tests/net/tcp/CMakeLists.txt index ee40bd1c973..23c1479c9a9 100644 --- a/tests/net/tcp/CMakeLists.txt +++ b/tests/net/tcp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tcp) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/traffic_class/CMakeLists.txt b/tests/net/traffic_class/CMakeLists.txt index ee40bd1c973..365e7f7494e 100644 --- a/tests/net/traffic_class/CMakeLists.txt +++ b/tests/net/traffic_class/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(traffic_class) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/trickle/CMakeLists.txt b/tests/net/trickle/CMakeLists.txt index ee40bd1c973..d1c9fb9e978 100644 --- a/tests/net/trickle/CMakeLists.txt +++ b/tests/net/trickle/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(trickle) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/tx_timestamp/CMakeLists.txt b/tests/net/tx_timestamp/CMakeLists.txt index ee40bd1c973..7d6cdf1600d 100644 --- a/tests/net/tx_timestamp/CMakeLists.txt +++ b/tests/net/tx_timestamp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(tx_timestamp) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/udp/CMakeLists.txt b/tests/net/udp/CMakeLists.txt index ee40bd1c973..91404a31399 100644 --- a/tests/net/udp/CMakeLists.txt +++ b/tests/net/udp/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(udp) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/utils/CMakeLists.txt b/tests/net/utils/CMakeLists.txt index ee40bd1c973..a1ba28bf309 100644 --- a/tests/net/utils/CMakeLists.txt +++ b/tests/net/utils/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(utils) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/vlan/CMakeLists.txt b/tests/net/vlan/CMakeLists.txt index ee40bd1c973..a621d2e1fc1 100644 --- a/tests/net/vlan/CMakeLists.txt +++ b/tests/net/vlan/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(vlan) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/net/websocket/CMakeLists.txt b/tests/net/websocket/CMakeLists.txt index 64cd0bc0246..9b9bf287a0a 100644 --- a/tests/net/websocket/CMakeLists.txt +++ b/tests/net/websocket/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(websocket) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip) FILE(GLOB app_sources src/*.c) diff --git a/tests/posix/common/CMakeLists.txt b/tests/posix/common/CMakeLists.txt index 41d1faa19e6..c74528050fc 100644 --- a/tests/posix/common/CMakeLists.txt +++ b/tests/posix/common/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(posix_common) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/include/posix) FILE(GLOB app_sources src/*.c) diff --git a/tests/posix/fs/CMakeLists.txt b/tests/posix/fs/CMakeLists.txt index e5623695246..96c30e2337f 100644 --- a/tests/posix/fs/CMakeLists.txt +++ b/tests/posix/fs/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fs) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/include/) diff --git a/tests/power/multicore/arc/CMakeLists.txt b/tests/power/multicore/arc/CMakeLists.txt index 2af1ae36908..a0af385378c 100644 --- a/tests/power/multicore/arc/CMakeLists.txt +++ b/tests/power/multicore/arc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(arc) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/drivers) FILE(GLOB app_sources src/*.c) diff --git a/tests/power/multicore/lmt/CMakeLists.txt b/tests/power/multicore/lmt/CMakeLists.txt index 611bd0bb0ea..0499fda24e6 100644 --- a/tests/power/multicore/lmt/CMakeLists.txt +++ b/tests/power/multicore/lmt/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(lmt) target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/drivers) FILE(GLOB app_sources src/*.c) diff --git a/tests/power/power_states/CMakeLists.txt b/tests/power/power_states/CMakeLists.txt index 800ba5841af..0e31f7d5daa 100644 --- a/tests/power/power_states/CMakeLists.txt +++ b/tests/power/power_states/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(power_states) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/shell/CMakeLists.txt b/tests/shell/CMakeLists.txt index 800ba5841af..4a4a182ce77 100644 --- a/tests/shell/CMakeLists.txt +++ b/tests/shell/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(shell) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/dfu/img_util/CMakeLists.txt b/tests/subsys/dfu/img_util/CMakeLists.txt index 800ba5841af..f171897c475 100644 --- a/tests/subsys/dfu/img_util/CMakeLists.txt +++ b/tests/subsys/dfu/img_util/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(img_util) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/dfu/mcuboot/CMakeLists.txt b/tests/subsys/dfu/mcuboot/CMakeLists.txt index 800ba5841af..2ad053ee7fe 100644 --- a/tests/subsys/dfu/mcuboot/CMakeLists.txt +++ b/tests/subsys/dfu/mcuboot/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(mcuboot) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/fs/fat_fs_api/CMakeLists.txt b/tests/subsys/fs/fat_fs_api/CMakeLists.txt index 800ba5841af..3734f0a914a 100644 --- a/tests/subsys/fs/fat_fs_api/CMakeLists.txt +++ b/tests/subsys/fs/fat_fs_api/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fat_fs_api) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt b/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt index 800ba5841af..7cf9e8c2f23 100644 --- a/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt +++ b/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fat_fs_dual_drive) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/fs/fcb/CMakeLists.txt b/tests/subsys/fs/fcb/CMakeLists.txt index 4f088b6723b..e5a2c1b9e96 100644 --- a/tests/subsys/fs/fcb/CMakeLists.txt +++ b/tests/subsys/fs/fcb/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fs_fcb) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/fs/multi-fs/CMakeLists.txt b/tests/subsys/fs/multi-fs/CMakeLists.txt index 786a169ab9b..cbb531efa60 100644 --- a/tests/subsys/fs/multi-fs/CMakeLists.txt +++ b/tests/subsys/fs/multi-fs/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(multi-fs) zephyr_compile_definitions( -DTEST_FLASH_OFFSET=0 diff --git a/tests/subsys/fs/nffs_fs_api/basic/CMakeLists.txt b/tests/subsys/fs/nffs_fs_api/basic/CMakeLists.txt index 6574a6e22cb..5afe64153ad 100644 --- a/tests/subsys/fs/nffs_fs_api/basic/CMakeLists.txt +++ b/tests/subsys/fs/nffs_fs_api/basic/CMakeLists.txt @@ -8,7 +8,7 @@ elseif(BOARD STREQUAL nrf52840_pca10056) endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(basic) if(BOARD STREQUAL qemu_x86) zephyr_compile_definitions( diff --git a/tests/subsys/fs/nffs_fs_api/cache/CMakeLists.txt b/tests/subsys/fs/nffs_fs_api/cache/CMakeLists.txt index 6574a6e22cb..d423920b377 100644 --- a/tests/subsys/fs/nffs_fs_api/cache/CMakeLists.txt +++ b/tests/subsys/fs/nffs_fs_api/cache/CMakeLists.txt @@ -8,7 +8,7 @@ elseif(BOARD STREQUAL nrf52840_pca10056) endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(cache) if(BOARD STREQUAL qemu_x86) zephyr_compile_definitions( diff --git a/tests/subsys/fs/nffs_fs_api/large/CMakeLists.txt b/tests/subsys/fs/nffs_fs_api/large/CMakeLists.txt index 6574a6e22cb..ef8cf1dfb96 100644 --- a/tests/subsys/fs/nffs_fs_api/large/CMakeLists.txt +++ b/tests/subsys/fs/nffs_fs_api/large/CMakeLists.txt @@ -8,7 +8,7 @@ elseif(BOARD STREQUAL nrf52840_pca10056) endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(large) if(BOARD STREQUAL qemu_x86) zephyr_compile_definitions( diff --git a/tests/subsys/fs/nffs_fs_api/performance/CMakeLists.txt b/tests/subsys/fs/nffs_fs_api/performance/CMakeLists.txt index 6574a6e22cb..99b318c96d7 100644 --- a/tests/subsys/fs/nffs_fs_api/performance/CMakeLists.txt +++ b/tests/subsys/fs/nffs_fs_api/performance/CMakeLists.txt @@ -8,7 +8,7 @@ elseif(BOARD STREQUAL nrf52840_pca10056) endif() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(performance) if(BOARD STREQUAL qemu_x86) zephyr_compile_definitions( diff --git a/tests/subsys/logging/log_core/CMakeLists.txt b/tests/subsys/logging/log_core/CMakeLists.txt index 800ba5841af..603f288a3ee 100644 --- a/tests/subsys/logging/log_core/CMakeLists.txt +++ b/tests/subsys/logging/log_core/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(log_core) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/logging/log_list/CMakeLists.txt b/tests/subsys/logging/log_list/CMakeLists.txt index 800ba5841af..0aad8555b94 100644 --- a/tests/subsys/logging/log_list/CMakeLists.txt +++ b/tests/subsys/logging/log_list/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(log_list) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/logging/log_msg/CMakeLists.txt b/tests/subsys/logging/log_msg/CMakeLists.txt index 800ba5841af..edf201fcc7d 100644 --- a/tests/subsys/logging/log_msg/CMakeLists.txt +++ b/tests/subsys/logging/log_msg/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(log_msg) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/logging/logger-hook/CMakeLists.txt b/tests/subsys/logging/logger-hook/CMakeLists.txt index 800ba5841af..16f5c5ff61a 100644 --- a/tests/subsys/logging/logger-hook/CMakeLists.txt +++ b/tests/subsys/logging/logger-hook/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(logger-hook) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/settings/fcb/CMakeLists.txt b/tests/subsys/settings/fcb/CMakeLists.txt index 0dd60d62c1c..269f291db86 100644 --- a/tests/subsys/settings/fcb/CMakeLists.txt +++ b/tests/subsys/settings/fcb/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(settings_fcb) FILE(GLOB app_sources src/*.c ../src/*c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/settings/fcb_init/CMakeLists.txt b/tests/subsys/settings/fcb_init/CMakeLists.txt index 800ba5841af..9bef3d64c40 100644 --- a/tests/subsys/settings/fcb_init/CMakeLists.txt +++ b/tests/subsys/settings/fcb_init/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(fcb_init) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/settings/nffs/CMakeLists.txt b/tests/subsys/settings/nffs/CMakeLists.txt index e4bba6b6a00..037405f94aa 100644 --- a/tests/subsys/settings/nffs/CMakeLists.txt +++ b/tests/subsys/settings/nffs/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(nffs) FILE(GLOB app_sources src/*.c ../src/*c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/storage/flash_map/CMakeLists.txt b/tests/subsys/storage/flash_map/CMakeLists.txt index 800ba5841af..49ebcfdf13e 100644 --- a/tests/subsys/storage/flash_map/CMakeLists.txt +++ b/tests/subsys/storage/flash_map/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(flash_map) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/usb/bos/CMakeLists.txt b/tests/subsys/usb/bos/CMakeLists.txt index 800ba5841af..69e60db3164 100644 --- a/tests/subsys/usb/bos/CMakeLists.txt +++ b/tests/subsys/usb/bos/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(bos) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/subsys/usb/os_desc/CMakeLists.txt b/tests/subsys/usb/os_desc/CMakeLists.txt index ad9930a6329..d44f5694dd9 100644 --- a/tests/subsys/usb/os_desc/CMakeLists.txt +++ b/tests/subsys/usb/os_desc/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(os_desc) zephyr_library_include_directories( ${ZEPHYR_BASE}/subsys/usb/ diff --git a/tests/unit/bluetooth/at/CMakeLists.txt b/tests/unit/bluetooth/at/CMakeLists.txt index 50ac495eede..57b8817b823 100644 --- a/tests/unit/bluetooth/at/CMakeLists.txt +++ b/tests/unit/bluetooth/at/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8.2) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) -project(NONE) +project(at) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/unit/lib/crc/CMakeLists.txt b/tests/unit/lib/crc/CMakeLists.txt index c18a2238240..32fbe11e8a7 100644 --- a/tests/unit/lib/crc/CMakeLists.txt +++ b/tests/unit/lib/crc/CMakeLists.txt @@ -1,3 +1,3 @@ -project(none) +project(crc) include($ENV{ZEPHYR_BASE}/tests/unit/unittest.cmake) diff --git a/tests/ztest/test/base/CMakeLists.txt b/tests/ztest/test/base/CMakeLists.txt index 207899b895b..eb5c44a49df 100644 --- a/tests/ztest/test/base/CMakeLists.txt +++ b/tests/ztest/test/base/CMakeLists.txt @@ -3,10 +3,10 @@ if(BOARD STREQUAL unit_testing) list(APPEND SOURCES src/main.c) include($ENV{ZEPHYR_BASE}/tests/unit/unittest.cmake) - project(none) + project(base) else() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) - project(NONE) + project(base) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources}) diff --git a/tests/ztest/test/mock/CMakeLists.txt b/tests/ztest/test/mock/CMakeLists.txt index 207899b895b..464ef3ab474 100644 --- a/tests/ztest/test/mock/CMakeLists.txt +++ b/tests/ztest/test/mock/CMakeLists.txt @@ -3,10 +3,10 @@ if(BOARD STREQUAL unit_testing) list(APPEND SOURCES src/main.c) include($ENV{ZEPHYR_BASE}/tests/unit/unittest.cmake) - project(none) + project(mock) else() include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) - project(NONE) + project(mock) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources})