summaryrefslogtreecommitdiff
path: root/Userland/Services/FileSystemAccessServer/CMakeLists.txt
blob: 67eeacb84a370b6affa6f4fe7c11234713945cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
serenity_component(
    FileSystemAccessServer
    REQUIRED
    TARGETS FileSystemAccessServer
)

compile_ipc(FileSystemAccessServer.ipc FileSystemAccessServerEndpoint.h)
compile_ipc(FileSystemAccessClient.ipc FileSystemAccessClientEndpoint.h)

set(SOURCES
    ClientConnection.cpp
    main.cpp
    FileSystemAccessServerEndpoint.h
    FileSystemAccessClientEndpoint.h
)

serenity_bin(FileSystemAccessServer)
target_link_libraries(FileSystemAccessServer LibCore LibIPC LibGUI)