blob: 156e04e80140cae7501113286cc87105aa54a5d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (C) 2024 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# for each platform, add a subdirectory with the platform name
#if(ANDROID)
# add_subdirectory(android)
#endif()
if(MACOS)
add_subdirectory(macos)
endif()
#if(IOS)
# add_subdirectory(ios)
#endif()
if(WIN32)
add_subdirectory(windows)
endif()
if(LINUX)
add_subdirectory(linux)
endif()
#add_subdirectory(macos)
#add_subdirectory(ios)
#add_subdirectory(windows)
|