
Import('component_env', 'env')

component_env.Append(
  CPPPATH = [
    "#/vendor/SDL_ttf/include"
  ],
)

libsdl_ttf_files = [
  "src/SDL_ttf.c"
]

component_env.StaticLibrary('libSDL_ttf', libsdl_ttf_files)
component_env.Install('$LIBRARY_DIR', 'libSDL_ttf.a')

env.AddStaticLibraryTo("SDL_ttf", "SDL")
