文件提交

This commit is contained in:
2021-10-28 13:34:00 +08:00
parent 4f62b7d9af
commit b69a5a14a9
5 changed files with 39 additions and 0 deletions

11
CmakeLists.txt Normal file
View File

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.3)
project(TowerOptoSifAndSpectral)
set(QT Core Network WebSockets SerialPort)
find_package(Qt5 REQUIRED ${QT})
include_directories(./source/test)
add_executable( TowerOptoSifAndSpectral
main.cpp
./source/test/test.cpp
./source/test/test.h
)
qt5_use_modules(TowerOptoSifAndSpectral ${QT})