-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
35 lines (30 loc) · 945 Bytes
/
CMakeLists.txt
File metadata and controls
35 lines (30 loc) · 945 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
cmake_minimum_required(VERSION 3.5)
project(KAmbiLED LANGUAGES CXX)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
find_package(Qt6 COMPONENTS Core Gui Widgets Multimedia REQUIRED)
add_executable(KAmbiLED
src/main.cpp
src/kambiled.cpp
src/kambiled.h
src/HyperionProcessor.cpp
src/HyperionProcessor.h
src/wledclient.cpp
src/wledclient.h
src/LedColorMapping.cpp
src/LedColorMapping.h
src/LinearColorSmoothing.cpp
src/LinearColorSmoothing.h
src/BlackBorderDetector.cpp
src/BlackBorderDetector.h
src/WaylandGrabber.cpp
src/WaylandGrabber.h
src/debugclient.cpp
src/debugclient.h
src/wledconfigclient.cpp
src/wledconfigclient.h
src/wayland_protocols/qwayland-zkde-screencast-unstable-v1.h
src/wayland_protocols/zkde-screencast-unstable-v1-client-protocol.h
)
target_link_libraries(KAmbiLED PRIVATE Qt::Core Qt::Gui Qt::Widgets Qt::Multimedia)