First init.

This commit is contained in:
2025-10-12 09:13:56 +02:00
commit 1548aeaf9b
458 changed files with 118808 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.16)
project(fontconv)
set(CMAKE_CXX_STANDARD 20)
set(VCPKG_TARGET_TRIPLET x64-windows-static)
FILE(GLOB sources *.cpp)
find_package(Freetype REQUIRED)
include_directories(${FREETYPE_INCLUDE_DIRS})
add_executable(fontconv ${sources})
target_link_libraries(fontconv PRIVATE Freetype::Freetype)