2023-09-24 03:39:10 -04:00
|
|
|
cmake_minimum_required(VERSION 3.24.0)
|
2022-06-05 03:22:27 -04:00
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15)
|
|
|
|
|
|
|
|
project(thedesk VERSION 1.0.0 LANGUAGES CXX)
|
|
|
|
|
|
|
|
IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
link_directories(/usr/local/lib)
|
|
|
|
ENDIF()
|
|
|
|
|
2023-03-06 03:33:26 -05:00
|
|
|
find_package(QT REQUIRED NAMES Qt6)
|
2023-03-06 03:44:58 -05:00
|
|
|
set(KF_VERSION_MAJOR ${QT_VERSION_MAJOR} CACHE STRING "Major version of KDE Frameworks to link to")
|
2023-03-06 03:33:26 -05:00
|
|
|
|
2022-06-05 03:22:27 -04:00
|
|
|
add_subdirectory(libthedesk)
|
|
|
|
add_subdirectory(startdesk)
|
|
|
|
add_subdirectory(desktop)
|
|
|
|
add_subdirectory(platform)
|
|
|
|
add_subdirectory(plugins)
|
2022-12-05 05:34:03 -05:00
|
|
|
add_subdirectory(polkitagent)
|
2023-02-02 02:46:30 -05:00
|
|
|
add_subdirectory(locker)
|
2023-06-05 06:42:02 -04:00
|
|
|
add_subdirectory(desktop-portal)
|
2023-09-24 03:39:10 -04:00
|
|
|
add_subdirectory(wayfire-plugins)
|