Shaved off about 5MB from freetype. It's far larger than any other library I'm pulling in.

This commit is contained in:
Fatbag 2012-06-12 03:31:12 -05:00
parent 10827bf2df
commit cb40cbd867
5 changed files with 40 additions and 24 deletions

View file

@ -1,18 +1,18 @@
cmake_minimum_required(VERSION 2.6)
project(hitutils)
set(HITDUMP_SOURCES
hitdump.cpp
)
set(HITASM_SOURCES
hitasm.cpp
)
set(HITLD_SOURCES
hitld.cpp
)
add_executable(hitdump ${HITDUMP_SOURCES})
add_executable(hitasm ${HITASM_SOURCES})
cmake_minimum_required(VERSION 2.6)
project(hitutils)
set(HITDUMP_SOURCES
hitdump.cpp
)
set(HITASM_SOURCES
hitasm.cpp
)
set(HITLD_SOURCES
hitld.cpp
)
add_executable(hitdump ${HITDUMP_SOURCES})
add_executable(hitasm ${HITASM_SOURCES})
add_executable(hitld ${HITLD_SOURCES})