mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 19:50:31 +00:00
11 lines
193 B
CMake
11 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)
|