There's still some stuff that could potentially go elsewhere but I think it's enough for now.
17 lines
481 B
CMake
17 lines
481 B
CMake
# SPDX-FileCopyrightText: 2025 James Graham <james.h.graham@protonmail.com>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
if (NOT ANDROID AND NOT WIN32 AND NOT APPLE AND NOT NEOCHAT_FLATPAK AND NOT NEOCHAT_APPIMAGE)
|
|
add_subdirectory(purpose)
|
|
endif()
|
|
|
|
add_subdirectory(libneochat)
|
|
add_subdirectory(login)
|
|
add_subdirectory(rooms)
|
|
add_subdirectory(timeline)
|
|
add_subdirectory(spaces)
|
|
add_subdirectory(chatbar)
|
|
add_subdirectory(settings)
|
|
add_subdirectory(devtools)
|
|
add_subdirectory(app)
|