mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:57:35 +00:00
LibSQL+SQLServer: Generate SQLServer's IPC sources with LibSQL on Lagom
Exclude SQLServer from Lagom, and instead generate its IPC sources with LibSQL.
This commit is contained in:
parent
b3e287342f
commit
517742d6f9
2 changed files with 10 additions and 7 deletions
|
@ -24,18 +24,21 @@ set(SOURCES
|
||||||
ResultSet.cpp
|
ResultSet.cpp
|
||||||
Row.cpp
|
Row.cpp
|
||||||
Serializer.cpp
|
Serializer.cpp
|
||||||
|
SQLClient.cpp
|
||||||
TreeNode.cpp
|
TreeNode.cpp
|
||||||
Tuple.cpp
|
Tuple.cpp
|
||||||
Value.cpp
|
Value.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if (SERENITYOS)
|
if (NOT SERENITYOS)
|
||||||
list(APPEND SOURCES SQLClient.cpp)
|
compile_ipc(../../Services/SQLServer/SQLClient.ipc ../../Services/SQLServer/SQLClientEndpoint.h)
|
||||||
set(GENERATED_SOURCES
|
compile_ipc(../../Services/SQLServer/SQLServer.ipc ../../Services/SQLServer/SQLServerEndpoint.h)
|
||||||
../../Services/SQLServer/SQLClientEndpoint.h
|
|
||||||
../../Services/SQLServer/SQLServerEndpoint.h
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(GENERATED_SOURCES
|
||||||
|
../../Services/SQLServer/SQLClientEndpoint.h
|
||||||
|
../../Services/SQLServer/SQLServerEndpoint.h
|
||||||
|
)
|
||||||
|
|
||||||
serenity_lib(LibSQL sql)
|
serenity_lib(LibSQL sql)
|
||||||
target_link_libraries(LibSQL PRIVATE LibCore LibIPC LibSyntax LibRegex)
|
target_link_libraries(LibSQL PRIVATE LibCore LibIPC LibSyntax LibRegex)
|
||||||
|
|
|
@ -5,7 +5,6 @@ add_subdirectory(ImageDecoder)
|
||||||
add_subdirectory(InspectorServer)
|
add_subdirectory(InspectorServer)
|
||||||
add_subdirectory(LookupServer)
|
add_subdirectory(LookupServer)
|
||||||
add_subdirectory(RequestServer)
|
add_subdirectory(RequestServer)
|
||||||
add_subdirectory(SQLServer)
|
|
||||||
add_subdirectory(WebServer)
|
add_subdirectory(WebServer)
|
||||||
add_subdirectory(WebSocket)
|
add_subdirectory(WebSocket)
|
||||||
|
|
||||||
|
@ -22,6 +21,7 @@ if (SERENITYOS)
|
||||||
add_subdirectory(NetworkServer)
|
add_subdirectory(NetworkServer)
|
||||||
add_subdirectory(NotificationServer)
|
add_subdirectory(NotificationServer)
|
||||||
add_subdirectory(SpiceAgent)
|
add_subdirectory(SpiceAgent)
|
||||||
|
add_subdirectory(SQLServer)
|
||||||
add_subdirectory(SystemServer)
|
add_subdirectory(SystemServer)
|
||||||
add_subdirectory(Taskbar)
|
add_subdirectory(Taskbar)
|
||||||
add_subdirectory(TelnetServer)
|
add_subdirectory(TelnetServer)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue