FasTC/Core/CMakeLists.txt

22 lines
390 B
CMake
Raw Normal View History

2012-08-27 17:36:59 +00:00
SET( SOURCES
"src/TexComp.cpp"
2012-08-27 22:34:37 +00:00
"src/CompressedImage.cpp"
2012-08-27 17:36:59 +00:00
)
SET( HEADERS
"include/TexComp.h"
2012-08-27 22:34:37 +00:00
"include/CompressedImage.h"
2012-08-27 17:36:59 +00:00
)
2012-08-27 22:34:37 +00:00
INCLUDE_DIRECTORIES( ${TexC_BINARY_DIR}/IO/include )
INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/IO/include )
2012-08-27 17:36:59 +00:00
INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/Core/include )
ADD_LIBRARY( TexCompCore
${HEADERS}
${SOURCES}
)
2012-08-27 22:34:37 +00:00
TARGET_LINK_LIBRARIES( TexCompCore TexCompIO )