mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 21:11:00 +00:00
16 lines
180 B
CMake
16 lines
180 B
CMake
|
|
SET( SOURCES
|
|
"src/TexComp.cpp"
|
|
)
|
|
|
|
SET( HEADERS
|
|
"include/TexComp.h"
|
|
)
|
|
|
|
INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/Core/include )
|
|
|
|
ADD_LIBRARY( TexCompCore
|
|
${HEADERS}
|
|
${SOURCES}
|
|
)
|