Upload files to "/"

This commit is contained in:
2026-09-12 06:38:30 +00:00
commit 22a4326b60
4 changed files with 1889 additions and 0 deletions

27
CMakeLists.txt Normal file
View File

@@ -0,0 +1,27 @@
include_directories(../font)
#include_directories(SYSTEM ${FREETYPE_INCLUDE_DIRS})
set(TTF_SOURCES glue.c schrift.c)
set(TTF_INCLUDE_FILES allegro5/allegro_schrift.h)
set_our_header_properties(${TTF_INCLUDE_FILES})
#configure_file(
# allegro5/internal/aintern_ttf_cfg.h.cmake
# ${PROJECT_BINARY_DIR}/include/allegro5/internal/aintern_ttf_cfg.h
# )
add_our_addon_library(allegro_ttf
AllegroTTF-${ALLEGRO_SOVERSION}
"${TTF_SOURCES};${TTF_INCLUDE_FILES}"
"-DALLEGRO_TTF_SRC"
"${FONT_LINK_WITH};${TTF_LIBRARIES}"
)
install_our_headers(${TTF_INCLUDE_FILES})
add_addon(ttf)
#-----------------------------------------------------------------------------#
# vi: set ts=8 sts=4 sw=4 et: