Skip to content

Commit 2cd51a3

Browse files
marc-hbcarlescufi
authored andcommitted
samples: make find_package(Zephyr...) REQUIRED
This provides a better error message when building with CMake and forgetting ZEPHYR_BASE or not registering Zephyr in the CMake package registry. See parent commit for more details (split from parent for better readability). Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent debade9 commit 2cd51a3

File tree

239 files changed

+239
-239
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+239
-239
lines changed

samples/application_development/code_relocation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(test_relocation)
77

88
FILE(GLOB app_sources src/*.c)

samples/application_development/external_lib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(external_lib)
66

77
target_sources(app PRIVATE src/main.c)

samples/application_development/out_of_tree_board/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set(BOARD_ROOT ${CMAKE_CURRENT_LIST_DIR})
1010
# this board.
1111
set(BOARD nrf52840dk_nrf52840)
1212

13-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
13+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1414
project(out_of_tree_board)
1515

1616
target_sources(app PRIVATE src/main.c)

samples/application_development/out_of_tree_driver/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.13.1)
1313
# be able to find the module's syscalls.
1414
list(APPEND SYSCALL_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/hello_world_module/zephyr)
1515

16-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
16+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1717
project(NONE)
1818

1919
target_sources(app PRIVATE

samples/basic/blinky/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(blinky)
66

77
target_sources(app PRIVATE src/main.c)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(blink_led)
66

77
target_sources(app PRIVATE src/main.c)

samples/basic/button/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(button)
66

77
target_sources(app PRIVATE src/main.c)

samples/basic/fade_led/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(fade_led)
66

77
target_sources(app PRIVATE src/main.c)

samples/basic/minimal/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(minimal)
77

88
target_sources(app PRIVATE src/main.c)

samples/basic/rgb_led/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(rgb_led)
66

77
target_sources(app PRIVATE src/main.c)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(servo_motor)
66

77
target_sources(app PRIVATE src/main.c)

samples/basic/threads/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(threads)
66

77
target_sources(app PRIVATE src/main.c)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(beacon)
66

77
target_sources(app PRIVATE src/main.c)

samples/bluetooth/central/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(central)
66

77
target_sources(app PRIVATE

samples/bluetooth/central_hr/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(central_hr)
66

77
FILE(GLOB app_sources src/*.c)

samples/bluetooth/eddystone/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(eddystone)
66

77
target_sources(app PRIVATE

samples/bluetooth/handsfree/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(handsfree)
66

77
FILE(GLOB app_sources src/*.c)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(hci_pwr_ctrl)
66

77
target_sources(app PRIVATE src/main.c)

samples/bluetooth/hci_rpmsg/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(hci_rpmsg)
77

88
target_sources(app PRIVATE src/main.c)

samples/bluetooth/hci_spi/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(hci_spi)
66

77
FILE(GLOB app_sources src/*.c)

samples/bluetooth/hci_uart/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(hci_uart)
77

88
target_sources(app PRIVATE src/main.c)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(hci_usb)
66

77
target_sources(app PRIVATE src/main.c)

samples/bluetooth/ibeacon/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(ibeacon)
66

77
target_sources(app PRIVATE src/main.c)

samples/bluetooth/ipsp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(ipsp)
66

77
target_sources(app PRIVATE

samples/bluetooth/mesh/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if((BOARD STREQUAL nrf51_blenano) OR (BOARD STREQUAL nrf51_ble400))
77
set(CONF_FILE nrf51_qfaa.conf)
88
endif()
99

10-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
10+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1111
project(mesh)
1212

1313
target_sources(app PRIVATE src/main.c)

samples/bluetooth/mesh_demo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cmake_minimum_required(VERSION 3.13.1)
44
set(QEMU_EXTRA_FLAGS -s)
55

6-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
6+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
77
project(mesh_demo)
88

99
target_sources(app PRIVATE src/main.c)

samples/bluetooth/mesh_provisioner/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cmake_minimum_required(VERSION 3.13.1)
44
set(QEMU_EXTRA_FLAGS -s)
55

6-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
6+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
77
project(mesh_provisioner)
88

99
target_sources(app PRIVATE src/main.c)

samples/bluetooth/peripheral/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(peripheral)
66

77
target_sources(app PRIVATE

samples/bluetooth/peripheral_csc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(peripheral_csc)
66

77
FILE(GLOB app_sources src/*.c)

samples/bluetooth/peripheral_dis/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(peripheral_dis)
66

77
FILE(GLOB app_sources src/*.c)

samples/bluetooth/peripheral_esp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(peripheral_esp)
66

77
target_sources(app PRIVATE

samples/bluetooth/peripheral_hids/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(peripheral_hids)
66

77
FILE(GLOB app_sources src/*.c)

samples/bluetooth/peripheral_hr/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(peripheral_hr)
77

88
FILE(GLOB app_sources src/*.c)

samples/bluetooth/peripheral_ht/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(peripheral_ht)
77

88
FILE(GLOB app_sources src/*.c)

samples/bluetooth/peripheral_sc_only/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(peripheral_sc_only)
66

77
target_sources(app PRIVATE

samples/bluetooth/scan_adv/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(scan_adv)
66

77
FILE(GLOB app_sources src/*.c)

samples/bluetooth/st_ble_sensor/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
cmake_minimum_required(VERSION 3.13.1)
4-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
55
project(st_ble_sensor)
66

77
FILE(GLOB app_sources src/*.c)

samples/boards/96b_argonkey/microphone/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
cmake_minimum_required(VERSION 3.13.1)
66

7-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
7+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
88
project(NONE)
99

1010
target_sources(app PRIVATE src/main.c)

samples/boards/96b_argonkey/sensors/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
cmake_minimum_required(VERSION 3.13.1)
66

7-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
7+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
88
project(96b_argonkey)
99

1010
target_sources(app PRIVATE src/main.c)

samples/boards/arc_secure_services/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(arc_secure_services)
77

88
target_sources(app PRIVATE src/main.c)

samples/boards/bbc_microbit/display/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(display)
77

88
FILE(GLOB app_sources src/*.c)

samples/boards/bbc_microbit/line_follower_robot/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(robot)
77

88
FILE(GLOB app_sources src/*.c)

samples/boards/bbc_microbit/pong/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(pong)
77

88
FILE(GLOB app_sources src/*.c)

samples/boards/bbc_microbit/sound/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cmake_minimum_required(VERSION 3.13.1)
44

5-
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
66
project(sound)
77

88
FILE(GLOB app_sources src/*.c)

0 commit comments

Comments
 (0)