proxy-network/src/CMakeLists.txt

13 lines
209 B
CMake
Raw Normal View History

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-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()