Mercurial > minori
comparison CMakeLists.txt @ 2:23d0d9319a00
Update
Also converted everything to LF from CRLF
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 12 Aug 2023 03:16:26 -0400 |
parents | 1ae666fdf9e2 |
children | 190ded9438c0 |
comparison
equal
deleted
inserted
replaced
1:1ae666fdf9e2 | 2:23d0d9319a00 |
---|---|
5 src/main.cpp | 5 src/main.cpp |
6 src/config.cpp | 6 src/config.cpp |
7 src/filesystem.cpp | 7 src/filesystem.cpp |
8 src/anilist.cpp | 8 src/anilist.cpp |
9 src/anime.cpp | 9 src/anime.cpp |
10 # src/pages/statistics.cpp | 10 src/json.cpp |
11 # src/pages/now_playing.cpp | 11 src/date.cpp |
12 # src/dialog/information.cpp | 12 src/time.cpp |
13 # src/ui_utils.cpp | 13 src/dialog/information.cpp |
14 src/ui_utils.cpp | |
14 src/string_utils.cpp | 15 src/string_utils.cpp |
15 rc/icons.qrc | 16 rc/icons.qrc |
16 dep/darkstyle/darkstyle.qrc | 17 dep/darkstyle/darkstyle.qrc |
18 # src/pages/statistics.cpp | |
19 # src/pages/now_playing.cpp | |
17 ) | 20 ) |
18 | 21 |
19 if(APPLE) | 22 if(APPLE) |
20 list(APPEND SRC_FILES src/sys/osx/dark_theme.mm) | 23 list(APPEND SRC_FILES src/sys/osx/dark_theme.mm) |
21 elseif(WIN32) | 24 elseif(WIN32) |
27 set_property(TARGET weeaboo PROPERTY AUTOMOC ON) | 30 set_property(TARGET weeaboo PROPERTY AUTOMOC ON) |
28 set_property(TARGET weeaboo PROPERTY AUTORCC ON) | 31 set_property(TARGET weeaboo PROPERTY AUTORCC ON) |
29 | 32 |
30 find_package(Qt5 COMPONENTS Widgets REQUIRED) | 33 find_package(Qt5 COMPONENTS Widgets REQUIRED) |
31 find_package(CURL REQUIRED) | 34 find_package(CURL REQUIRED) |
32 target_include_directories(weeaboo PUBLIC ${Qt5Widgets_INCLUDE_DIRS} ${CURL_INCLUDE_DIRS} PRIVATE src/include src/icons dep/json) | 35 target_include_directories(weeaboo PUBLIC ${Qt5Widgets_INCLUDE_DIRS} ${CURL_INCLUDE_DIRS} PRIVATE src/include src/icons) |
33 target_link_libraries(weeaboo ${Qt5Widgets_LIBRARIES} ${CURL_LIBRARIES}) | 36 target_link_libraries(weeaboo ${Qt5Widgets_LIBRARIES} ${CURL_LIBRARIES}) |