transm/server/CMakeLists.txt
2024-12-11 08:44:14 +08:00

10 lines
211 B
CMake

cmake_minimum_required(VERSION 3.16)
project(transms LANGUAGES CXX)
if (MSVC)
add_definitions(-D_WIN32_WINNT=0x0601)
add_compile_options(/source-charset:utf-8)
endif()
add_executable(transms main.cpp)