mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 19:40:18 -07:00
10 lines
193 B
CMake
10 lines
193 B
CMake
if (APPLE)
|
|
add_subdirectory(mac)
|
|
else (APPLE)
|
|
if (UNIX)
|
|
add_subdirectory(unix)
|
|
endif (UNIX)
|
|
if (WIN32)
|
|
add_subdirectory(windows)
|
|
endif (WIN32)
|
|
endif (APPLE)
|