mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-23 16:43:45 +00:00
59 lines
1.3 KiB
CMake
59 lines
1.3 KiB
CMake
|
|
SET( SOURCES
|
|
"src/TexComp.cpp"
|
|
"src/CompressedImage.cpp"
|
|
)
|
|
|
|
SET( HEADERS
|
|
"include/TexComp.h"
|
|
"include/CompressedImage.h"
|
|
"include/TexCompTypes.h"
|
|
)
|
|
|
|
# Make sure to add the appropriate stopwatch files...
|
|
SET( HEADERS ${HEADERS} "src/StopWatch.h" )
|
|
|
|
IF( WIN32 )
|
|
SET( SOURCES ${SOURCES} "src/StopWatchWin32.cpp" )
|
|
ELSEIF( APPLE )
|
|
SET( SOURCES ${SOURCES} "src/StopWatchOSX.cpp" )
|
|
ELSE()
|
|
SET( SOURCES ${SOURCES} "src/StopWatchUnix.cpp" )
|
|
|
|
# Assume compiler is GCC
|
|
SET( LINK_FLAGS -lrt ${LINK_FLAGS} )
|
|
ENDIF()
|
|
|
|
INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/BPTCEncoder/include )
|
|
INCLUDE_DIRECTORIES( ${TexC_BINARY_DIR}/BPTCEncoder/include )
|
|
|
|
INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/IO/include )
|
|
INCLUDE_DIRECTORIES( ${TexC_BINARY_DIR}/IO/include )
|
|
|
|
INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/Core/include )
|
|
|
|
FIND_PACKAGE( Boost COMPONENTS thread system )
|
|
IF( Boost_FOUND )
|
|
INCLUDE_DIRECTORIES( ${Boost_INCLUDE_DIR} )
|
|
|
|
SET( SOURCES ${SOURCES} "src/ThreadGroup.cpp")
|
|
SET( HEADERS ${HEADERS} "src/ThreadGroup.h")
|
|
|
|
LINK_DIRECTORIES( ${Boost_LIBRARY_DIR} )
|
|
ENDIF()
|
|
|
|
ADD_LIBRARY( TexCompCore
|
|
${HEADERS}
|
|
${SOURCES}
|
|
)
|
|
|
|
TARGET_LINK_LIBRARIES( TexCompCore TexCompIO )
|
|
TARGET_LINK_LIBRARIES( TexCompCore BPTCEncoder )
|
|
|
|
IF( Boost_FOUND )
|
|
TARGET_LINK_LIBRARIES( TexCompCore ${Boost_LIBRARIES} )
|
|
ENDIF()
|
|
|
|
IF( NOT WIN32 AND NOT APPLE )
|
|
TARGET_LINK_LIBRARIES( TexCompCore rt )
|
|
ENDIF()
|