summaryrefslogtreecommitdiff
path: root/hid/pico/src/CMakeLists.txt
blob: f8ca0b8c531ea745ac7553d7e56e37f6b4c0234f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
set(target_name hid)
add_executable(${target_name})

target_sources(${target_name} PRIVATE
	main.c
	ph_outputs.c
	ph_usb.c
	ph_usb_kbd.c
	ph_usb_mouse.c
	ph_cmds.c
	ph_spi.c
	ph_uart.c
	ph_debug.c
)
target_link_options(${target_name} PRIVATE -Xlinker --print-memory-usage)
target_compile_options(${target_name} PRIVATE -Wall -Wextra)
target_include_directories(${target_name} PRIVATE ${CMAKE_CURRENT_LIST_DIR})

target_link_libraries(${target_name} PRIVATE
	pico_stdlib
	pico_unique_id
	hardware_spi
	hardware_watchdog
	tinyusb_device
)
pico_add_extra_outputs(${target_name})