mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-22 20:49:43 +08:00
11 lines
338 B
Plaintext
11 lines
338 B
Plaintext
|
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})
|