2023-09-30 01:40:56 -05:00
|
|
|
add_executable(proxy
|
2023-09-30 14:28:48 -05:00
|
|
|
./proxy.cpp
|
2023-10-01 18:24:47 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(web_server
|
|
|
|
./web_server.cpp
|
2023-09-12 14:17:01 -05:00
|
|
|
)
|
|
|
|
|
2023-10-04 01:10:24 -05:00
|
|
|
if(WIN32)
|
|
|
|
target_link_libraries(proxy wsock32 ws2_32)
|
|
|
|
target_link_libraries(web_server wsock32 ws2_32)
|
|
|
|
endif()
|