Mercurial > minori
annotate CMakeLists.txt @ 82:8b65c417c225
*: fix old stuff, make video players and extensions constants
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 23 Oct 2023 13:37:42 -0400 |
parents | 9b2b41f83a5e |
children | c4bb49c2f6eb |
rev | line source |
---|---|
5 | 1 cmake_minimum_required(VERSION 3.16) |
17
db445ce42057
cmake: only enable OBJCXX on OS X
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
2 project(minori LANGUAGES CXX) |
db445ce42057
cmake: only enable OBJCXX on OS X
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
3 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
4 # this should check for the target system, rather than |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
5 # the host system, for cross-compiling purposes |
17
db445ce42057
cmake: only enable OBJCXX on OS X
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
6 if(APPLE) |
db445ce42057
cmake: only enable OBJCXX on OS X
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
7 enable_language(OBJCXX) |
db445ce42057
cmake: only enable OBJCXX on OS X
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
8 endif() |
2 | 9 |
64 | 10 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}") |
11 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}") | |
12 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}") | |
13 | |
14 option(BUILD_SHARED_LIBS "Build using shared libraries" ON) | |
15 option(USE_QT6 "Build with Qt 6 instead of Qt 5" OFF) | |
16 | |
9 | 17 add_subdirectory(dep/anitomy) |
64 | 18 add_subdirectory(dep/animia) |
55
d10b6c6b432e
add xml lib, we will need to use it eventually
Paper <mrpapersonic@gmail.com>
parents:
54
diff
changeset
|
19 add_subdirectory(dep/pugixml) |
9 | 20 |
12 | 21 # Fix for mingw64 |
22 list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES ".dll.a" ".a") | |
23 | |
62 | 24 if(USE_QT6) |
25 find_package(Qt6 COMPONENTS Widgets REQUIRED) | |
26 else() | |
27 find_package(Qt5 COMPONENTS Widgets REQUIRED) | |
28 endif() | |
12 | 29 find_package(CURL REQUIRED) |
30 | |
31 set(LIBRARIES | |
32 ${CURL_LIBRARIES} | |
33 anitomy | |
64 | 34 animia |
12 | 35 ) |
36 | |
62 | 37 if(USE_QT6) |
38 list(APPEND LIBRARIES ${Qt6Widgets_LIBRARIES}) | |
39 else() | |
40 list(APPEND LIBRARIES ${Qt5Widgets_LIBRARIES}) | |
41 endif() | |
42 | |
12 | 43 # We need Cocoa for some OS X stuff |
44 if(APPLE) | |
45 find_library(COCOA_LIBRARY Cocoa) | |
46 list(APPEND LIBRARIES ${COCOA_LIBRARY}) | |
47 endif() | |
48 | |
2 | 49 set(SRC_FILES |
9 | 50 # Main entrypoint |
81 | 51 src/main.cc |
9 | 52 |
53 # Core files and datatype declarations... | |
81 | 54 src/core/anime.cc |
55 src/core/anime_db.cc | |
56 src/core/config.cc | |
57 src/core/date.cc | |
58 src/core/filesystem.cc | |
59 src/core/http.cc | |
60 src/core/json.cc | |
61 src/core/strings.cc | |
62 src/core/time.cc | |
9 | 63 |
46 | 64 # Main window |
81 | 65 src/gui/window.cc |
66 src/gui/dark_theme.cc | |
46 | 67 |
68 # Main window pages | |
81 | 69 src/gui/pages/anime_list.cc |
70 src/gui/pages/now_playing.cc | |
71 src/gui/pages/statistics.cc | |
72 src/gui/pages/search.cc | |
73 src/gui/pages/seasons.cc | |
74 src/gui/pages/torrents.cc | |
75 src/gui/pages/history.cc | |
54
466ac9870df9
add stub pages (to be implemented)
Paper <mrpapersonic@gmail.com>
parents:
51
diff
changeset
|
76 |
46 | 77 |
78 # Custom widgets | |
81 | 79 src/gui/widgets/anime_info.cc |
80 src/gui/widgets/poster.cc | |
81 src/gui/widgets/clickable_label.cc | |
82 src/gui/widgets/sidebar.cc | |
83 src/gui/widgets/text.cc | |
84 src/gui/widgets/optional_date.cc | |
9 | 85 |
86 # Dialogs | |
81 | 87 src/gui/dialog/about.cc |
88 src/gui/dialog/information.cc | |
89 src/gui/dialog/settings.cc | |
90 src/gui/dialog/settings/application.cc | |
91 src/gui/dialog/settings/services.cc | |
9 | 92 |
10 | 93 # Translate |
81 | 94 src/gui/translate/anime.cc |
95 src/gui/translate/anilist.cc | |
10 | 96 |
9 | 97 # Services (only AniList for now) |
81 | 98 src/services/services.cc |
99 src/services/anilist.cc | |
9 | 100 |
64 | 101 # Tracking |
82
8b65c417c225
*: fix old stuff, make video players and extensions constants
Paper <mrpapersonic@gmail.com>
parents:
81
diff
changeset
|
102 src/track/constants.cc |
81 | 103 src/track/media.cc |
64 | 104 |
9 | 105 # Qt resources |
2 | 106 rc/icons.qrc |
107 dep/darkstyle/darkstyle.qrc | |
108 ) | |
109 | |
9 | 110 if(APPLE) # Mac OS X (or OS X (or macOS)) |
5 | 111 list(APPEND SRC_FILES |
112 src/sys/osx/dark_theme.mm | |
113 src/sys/osx/filesystem.mm | |
114 ) | |
9 | 115 elseif(WIN32) # Windows |
81 | 116 list(APPEND SRC_FILES src/sys/win32/dark_theme.cc) |
2 | 117 endif() |
118 | |
51 | 119 add_executable(minori ${SRC_FILES}) |
63 | 120 set_property(TARGET minori PROPERTY CXX_STANDARD 11) |
11 | 121 set_property(TARGET minori PROPERTY AUTOMOC ON) |
122 set_property(TARGET minori PROPERTY AUTORCC ON) | |
2 | 123 |
64 | 124 target_include_directories(minori PUBLIC ${CURL_INCLUDE_DIRS} PRIVATE include dep/pugixml/src dep/animia/include dep/anitomy) |
62 | 125 if(USE_QT6) |
126 target_include_directories(minori PUBLIC ${Qt6Widgets_INCLUDE_DIRS}) | |
127 else() | |
128 target_include_directories(minori PUBLIC ${Qt5Widgets_INCLUDE_DIRS}) | |
129 endif() | |
64 | 130 target_compile_options(minori PRIVATE -Wall -Wpedantic -Wextra -Wsuggest-override -Wold-style-cast) |
5 | 131 if(APPLE) |
11 | 132 target_compile_definitions(minori PUBLIC MACOSX) |
9 | 133 elseif(WIN32) |
11 | 134 target_compile_definitions(minori PUBLIC WIN32) |
5 | 135 endif() |
11 | 136 target_link_libraries(minori ${LIBRARIES}) |