DarkflameServer/dUgcServer/CMakeLists.txt
2022-12-20 22:48:58 +00:00

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)