SockGrab/CMakeLists.txt

12 lines
259 B
CMake
Raw Permalink Normal View History

2024-08-21 02:25:46 +08:00
cmake_minimum_required(VERSION 3.16)
project(SockGrab)
if (MSVC)
add_compile_options(/source-charset:utf-8)
add_compile_options(-D_CRT_SECURE_NO_WARNINGS)
endif()
add_executable(SockGrab win/main.cpp)
target_link_libraries(SockGrab PRIVATE ws2_32)