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)