Initial import
This commit is contained in:
commit
94611f2381
10 changed files with 258 additions and 0 deletions
23
source/CMakeLists.txt
Normal file
23
source/CMakeLists.txt
Normal file
|
@ -0,0 +1,23 @@
|
|||
cmake_minimum_required(VERSION 3.6)
|
||||
project(qEcho)
|
||||
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
|
||||
find_package(Qt5Widgets)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
main.cpp
|
||||
mainwindow.cpp
|
||||
mainwindow.h
|
||||
mainwindow.ui
|
||||
blinkthread.cpp
|
||||
blinkthread.h
|
||||
distancethread.cpp
|
||||
distancethread.h
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} wiringPi Qt5::Widgets)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue