# CMakeLists.txt --- CMake project settings
##############################################################################

# CMake minimum version
cmake_minimum_required(VERSION 3.10)

# project name and languages
project(GetGlyphOutline CXX RC)

# GetGlyphOutline.exe
add_executable(GetGlyphOutline WIN32 GetGlyphOutline.cpp GetGlyphOutline_res.rc)
target_link_libraries(GetGlyphOutline comctl32)
