cmake_minimum_required(VERSION 3.2) project(usbreset CXX) add_executable(usbreset src/usbreset.cpp) target_compile_options(usbreset PUBLIC "--std=c++14") INSTALL(TARGETS usbreset RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)