-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
38 lines (33 loc) · 762 Bytes
/
CMakeLists.txt
File metadata and controls
38 lines (33 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-License-Identifier: GPL-3.0-only
# CMake build system lists file for UltradiumTimer
cmake_minimum_required(VERSION 3.16)
project(UltradiumTimer)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
find_package(Qt6 REQUIRED COMPONENTS Core Gui Multimedia Qml Quick widgets)
find_package(Qt6 REQUIRED COMPONENTS Core)
add_executable(${PROJECT_NAME}
main.cpp
TimerManager.cpp
TimerManager.h
QuotesManager.cpp
QuotesManager.h
quotes.csv
qml.qrc
quotes_generic.csv
sound_resources.qrc
ColorPicker.h
ColorPicker.cpp
EyeTimer.h
EyeTimer.cpp
SFXPlayer.h
)
target_link_libraries(${PROJECT_NAME}
Qt6::Core
Qt6::Gui
Qt6::Multimedia
Qt6::Qml
Qt6::Quick
Qt6::Widgets
)