mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 21:03:58 +00:00
15 lines
180 B
CMake
15 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}
|
|
)
|