-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
37 lines (32 loc) · 813 Bytes
/
CMakeLists.txt
File metadata and controls
37 lines (32 loc) · 813 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
cmake_minimum_required(VERSION 3.16)
project(tinybookshelf VERSION 0.1.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
find_package(Qt5 REQUIRED COMPONENTS Widgets Network Multimedia Svg)
add_executable(tinybookshelf
resources/resources.qrc
src/main.cpp
src/ConfigManager.cpp
src/ApiClient.cpp
src/Theme.cpp
src/AudioEngine.cpp
src/ProgressSync.cpp
src/CoverCache.cpp
src/LibraryModel.cpp
src/BookmarkManager.cpp
src/LibraryView.cpp
src/PlayerBar.cpp
src/ItemDetailView.cpp
src/BookmarkDialog.cpp
src/MainWindow.cpp
)
target_link_libraries(tinybookshelf PRIVATE
Qt5::Widgets
Qt5::Network
Qt5::Multimedia
Qt5::Svg
)
enable_testing()
add_subdirectory(tests)