DarkflameServer/dUgcServer/CMakeLists.txt

11 lines
263 B
CMake
Raw Normal View History

2022-12-20 22:48:58 +00:00
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)