From 9737d21262d03cc802a93f4cd64a240537430bd9 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Tue, 30 May 2017 12:47:17 +0200 Subject: o Initial import of usbreset. --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5988f5c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +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) -- cgit v1.2.3