mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 20:31:03 +00:00
22 lines
226 B
CMake
22 lines
226 B
CMake
|
|
SET( SOURCES
|
|
ImageFile.cpp
|
|
)
|
|
|
|
SET( HEADERS
|
|
ImageLoader.h
|
|
ImageFile.h
|
|
)
|
|
|
|
CONFIGURE_FILE(
|
|
"ImageLoader.h.in"
|
|
"ImageLoader.h"
|
|
)
|
|
|
|
INCLUDE_DIRECTORIES( ${TexC_BINARY_DIR}/IO )
|
|
|
|
ADD_LIBRARY(TexCompIO
|
|
${SOURCES}
|
|
${HEADERS}
|
|
)
|