2016-08-17 23:49:13 +00:00
|
|
|
# Copyright 2016 The University of North Carolina at Chapel Hill
|
2013-08-27 22:25:15 +00:00
|
|
|
#
|
2016-08-17 23:49:13 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2013-08-27 22:25:15 +00:00
|
|
|
#
|
2016-08-17 23:49:13 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-08-27 22:25:15 +00:00
|
|
|
#
|
2016-08-17 23:49:13 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2013-08-27 22:25:15 +00:00
|
|
|
#
|
|
|
|
# Please send all BUG REPORTS to <pavel@cs.unc.edu>.
|
|
|
|
# <http://gamma.cs.unc.edu/FasTC/>
|
|
|
|
|
2014-11-18 22:07:26 +00:00
|
|
|
SET( LIBRARY_HEADERS
|
|
|
|
"include/FasTC/PVRTCCompressor.h"
|
|
|
|
)
|
2013-09-06 05:50:46 +00:00
|
|
|
|
2013-08-27 22:25:15 +00:00
|
|
|
SET( HEADERS
|
2014-11-18 22:07:26 +00:00
|
|
|
${LIBRARY_HEADERS}
|
2013-08-29 16:06:05 +00:00
|
|
|
src/Block.h
|
2013-10-04 22:35:18 +00:00
|
|
|
src/PVRTCImage.h
|
2015-04-11 21:04:20 +00:00
|
|
|
src/Indexer.h
|
2013-08-27 22:25:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SET( SOURCES
|
2013-09-13 17:10:22 +00:00
|
|
|
src/Compressor.cpp
|
2013-08-27 22:25:15 +00:00
|
|
|
src/Decompressor.cpp
|
2013-08-29 16:06:05 +00:00
|
|
|
src/Block.cpp
|
2013-10-04 22:35:18 +00:00
|
|
|
src/PVRTCImage.cpp
|
2013-08-27 22:25:15 +00:00
|
|
|
)
|
|
|
|
|
2014-09-02 20:39:11 +00:00
|
|
|
OPTION(DEBUG_PVRTC_DECODER "Output intermediate images during PVRTC decoding." OFF)
|
|
|
|
|
2013-09-30 16:04:00 +00:00
|
|
|
CONFIGURE_FILE(
|
|
|
|
"config/PVRTCDefines.h.in"
|
2014-11-18 22:07:26 +00:00
|
|
|
"include/FasTC/PVRTCDefines.h"
|
2013-09-30 16:04:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
IF( PVRTEXLIB_FOUND )
|
|
|
|
INCLUDE_DIRECTORIES( ${PVRTEXLIB_INCLUDE_DIRS} )
|
|
|
|
SET( SOURCES
|
|
|
|
${SOURCES}
|
|
|
|
src/CompressorPVRLib.cpp
|
|
|
|
)
|
|
|
|
ENDIF()
|
|
|
|
|
2014-11-18 22:07:26 +00:00
|
|
|
INCLUDE_DIRECTORIES(${FasTC_SOURCE_DIR}/PVRTCEncoder/include)
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_BINARY_DIR}/PVRTCEncoder/include)
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_SOURCE_DIR}/Base/include)
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_BINARY_DIR}/Base/include)
|
|
|
|
|
2013-08-27 22:25:15 +00:00
|
|
|
ADD_LIBRARY( PVRTCEncoder
|
|
|
|
${HEADERS}
|
|
|
|
${SOURCES}
|
|
|
|
)
|
2013-09-06 05:50:46 +00:00
|
|
|
|
2014-11-18 22:07:26 +00:00
|
|
|
INSTALL(TARGETS PVRTCEncoder EXPORT FasTCTargets ARCHIVE DESTINATION lib COMPONENT lib)
|
|
|
|
INSTALL(
|
|
|
|
FILES ${LIBRARY_HEADERS} "${FasTC_BINARY_DIR}/PVRTCEncoder/include/FasTC/PVRTCDefines.h"
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/FasTC
|
|
|
|
COMPONENT dev)
|
|
|
|
|
2013-10-03 21:25:15 +00:00
|
|
|
TARGET_LINK_LIBRARIES( PVRTCEncoder FasTCBase )
|
2014-09-02 20:39:11 +00:00
|
|
|
IF( DEBUG_PVRTC_DECODER )
|
|
|
|
TARGET_LINK_LIBRARIES( PVRTCEncoder FasTCIO )
|
|
|
|
ENDIF( DEBUG_PVRTC_DECODER )
|
2013-09-30 16:04:00 +00:00
|
|
|
|
|
|
|
IF( PVRTEXLIB_FOUND )
|
|
|
|
TARGET_LINK_LIBRARIES( PVRTCEncoder ${PVRTEXLIB_LIBRARIES} )
|
2013-10-10 15:04:40 +00:00
|
|
|
ENDIF( PVRTEXLIB_FOUND )
|