1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-19 11:52:16 +01:00
rpi-vk-driver/test/inputTest/CMakeLists.txt
2020-05-20 22:39:29 +01:00

14 lines
253 B
CMake

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