forked from quickshell/quickshell
feat(socket): add unix socket listener
This commit is contained in:
parent
bb5bc0547a
commit
83a0ec6fc6
10 changed files with 479 additions and 0 deletions
|
@ -15,8 +15,17 @@ qt_add_executable(quickshell
|
|||
windowinterface.cpp
|
||||
floatingwindow.cpp
|
||||
panelinterface.cpp
|
||||
datastream.cpp
|
||||
)
|
||||
|
||||
qt_add_qml_module(quickshell URI Quickshell)
|
||||
|
||||
if (SOCKETS)
|
||||
target_sources(quickshell PRIVATE socket.cpp)
|
||||
endif()
|
||||
|
||||
target_link_libraries(quickshell PRIVATE ${QT_DEPS})
|
||||
|
||||
if (TESTS)
|
||||
add_subdirectory(test)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue