mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-15 09:01:12 +01:00
Adds lib-network-manager
This commit is contained in:
41
libraries/lib-network-manager/CMakeLists.txt
Normal file
41
libraries/lib-network-manager/CMakeLists.txt
Normal file
@@ -0,0 +1,41 @@
|
||||
set(TARGET lib-network-manager)
|
||||
set( TARGET_ROOT ${CMAKE_CURRENT_SOURCE_DIR} )
|
||||
|
||||
def_vars()
|
||||
|
||||
set( SOURCES
|
||||
IResponse.h
|
||||
IResponseFactory.h
|
||||
|
||||
HeadersList.h
|
||||
HeadersList.cpp
|
||||
|
||||
CookiesList.h
|
||||
CookiesList.cpp
|
||||
|
||||
Request.h
|
||||
Request.cpp
|
||||
|
||||
NetworkManager.h
|
||||
NetworkManager.cpp
|
||||
|
||||
curl/CurlResponse.h
|
||||
curl/CurlResponse.cpp
|
||||
curl/CurlResponseFactory.h
|
||||
curl/CurlResponseFactory.cpp
|
||||
curl/CurlStringList.h
|
||||
curl/CurlStringList.cpp
|
||||
curl/CurlHandleManager.h
|
||||
curl/CurlHandleManager.cpp
|
||||
)
|
||||
|
||||
|
||||
set ( LIBRARIES PRIVATE
|
||||
CURL::libcurl
|
||||
ThreadPool::ThreadPool
|
||||
lib-string-utils
|
||||
wxwidgets::base
|
||||
)
|
||||
|
||||
|
||||
audacity_library( ${TARGET} "${SOURCES}" "${LIBRARIES}" "" "" )
|
||||
Reference in New Issue
Block a user