1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-31 23:52:14 +01:00
rpi-vk-driver/test/inputTest/CMakeLists.txt
2020-05-17 17:29:04 +01:00

13 lines
213 B
CMake

file(GLOB testSrc
"*.h"
"*.cpp"
)
add_executable(inputTest ${testSrc})
target_compile_options(inputTest PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)
target_link_libraries(inputTest mtdev evdev udev input)