mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 01:36:15 +03: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)
|