feat(core): make cpp-httplib use poll()

This commit is contained in:
Oleg Shparber 2020-07-04 17:03:17 -04:00
parent dfc8162f44
commit 9d197ebdd9

View File

@ -11,6 +11,9 @@ add_library(Core STATIC
httplib.h
)
# Configure cpp-httplib.
add_definitions(-DCPPHTTPLIB_USE_POLL)
target_link_libraries(Core Registry Ui)
find_package(Qt5 COMPONENTS Network WebEngine Widgets REQUIRED)