mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
11 lines
263 B
CMake
11 lines
263 B
CMake
|
set(DUGCSERVER_SOURCES
|
||
|
"GZip.cpp"
|
||
|
)
|
||
|
|
||
|
add_library(dUgcServer ${DUGCSERVER_SOURCES})
|
||
|
|
||
|
add_executable(UgcServer "UgcServer.cpp")
|
||
|
|
||
|
target_link_libraries(dUgcServer ${COMMON_LIBRARIES})
|
||
|
target_link_libraries(UgcServer ${COMMON_LIBRARIES} httplib::httplib dUgcServer)
|