cmake_minimum_required(VERSION 3.16) project(gendef LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) if(MSVC) add_compile_options("/source-charset:utf-8") endif() add_executable(gendef main.cxx)