mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 18:47:37 -07:00
CMake: Don't split GUI code into several libraries
This commit is contained in:
parent
4a2d25b03b
commit
642bf7b8a6
13 changed files with 437 additions and 506 deletions
13
dist/CMakeLists.txt
vendored
13
dist/CMakeLists.txt
vendored
|
@ -2,11 +2,8 @@ find_package(Qt5Widgets ${requiredQtVersion}) # to conditionally install desktop
|
|||
|
||||
if (APPLE)
|
||||
add_subdirectory(mac)
|
||||
else (APPLE)
|
||||
if (UNIX)
|
||||
add_subdirectory(unix)
|
||||
endif (UNIX)
|
||||
if (WIN32)
|
||||
add_subdirectory(windows)
|
||||
endif (WIN32)
|
||||
endif (APPLE)
|
||||
elseif (UNIX)
|
||||
add_subdirectory(unix)
|
||||
elseif (WIN32)
|
||||
add_subdirectory(windows)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue