forked from quickshell/quickshell
Docs currently cannot be generated due to lack of qml parsing support in typegen.
25 lines
398 B
CMake
25 lines
398 B
CMake
qt_add_executable(quickshell main.cpp)
|
|
|
|
install(TARGETS quickshell RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
|
|
add_subdirectory(core)
|
|
add_subdirectory(io)
|
|
add_subdirectory(widgets)
|
|
|
|
if (CRASH_REPORTER)
|
|
add_subdirectory(crash)
|
|
endif()
|
|
|
|
if (DBUS)
|
|
add_subdirectory(dbus)
|
|
endif()
|
|
|
|
if (WAYLAND)
|
|
add_subdirectory(wayland)
|
|
endif()
|
|
|
|
if (X11)
|
|
add_subdirectory(x11)
|
|
endif()
|
|
|
|
add_subdirectory(services)
|