1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-20 12:52:15 +01:00
rpi-vk-driver/test/inputTest/CMakeLists.txt

13 lines
219 B
CMake
Raw Normal View History

2020-05-11 19:45:46 +01:00
file(GLOB testSrc
"*.h"
"*.cpp"
)
add_executable(inputTest ${testSrc})
target_compile_options(inputTest PRIVATE -Wall -std=c++11
-march=${RPI_ARCH} -fPIC
)
2020-05-11 19:45:46 +01:00
target_link_libraries(inputTest mtdev evdev udev input)