2012-11-15 16:51:55 +00:00
|
|
|
# FasTC
|
|
|
|
# Copyright (c) 2012 University of North Carolina at Chapel Hill. All rights reserved.
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, and distribute this software and its documentation for educational,
|
|
|
|
# research, and non-profit purposes, without fee, and without a written agreement is hereby granted,
|
|
|
|
# provided that the above copyright notice, this paragraph, and the following four paragraphs appear
|
|
|
|
# in all copies.
|
|
|
|
#
|
|
|
|
# Permission to incorporate this software into commercial products may be obtained by contacting the
|
|
|
|
# authors or the Office of Technology Development at the University of North Carolina at Chapel Hill <otd@unc.edu>.
|
|
|
|
#
|
|
|
|
# This software program and documentation are copyrighted by the University of North Carolina at Chapel Hill.
|
|
|
|
# The software program and documentation are supplied "as is," without any accompanying services from the
|
|
|
|
# University of North Carolina at Chapel Hill or the authors. The University of North Carolina at Chapel Hill
|
|
|
|
# and the authors do not warrant that the operation of the program will be uninterrupted or error-free. The
|
|
|
|
# end-user understands that the program was developed for research purposes and is advised not to rely
|
|
|
|
# exclusively on the program for any reason.
|
|
|
|
#
|
|
|
|
# IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE AUTHORS BE LIABLE TO ANY PARTY FOR
|
|
|
|
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
|
|
|
|
# USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE
|
|
|
|
# AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
# THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY
|
|
|
|
# STATUTORY WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY
|
|
|
|
# OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS HAVE NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
|
|
|
|
# ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
#
|
|
|
|
# Please send all BUG REPORTS to <pavel@cs.unc.edu>.
|
|
|
|
#
|
|
|
|
# The authors may be contacted via:
|
|
|
|
#
|
|
|
|
# Pavel Krajcevski
|
|
|
|
# Dept of Computer Science
|
|
|
|
# 201 S Columbia St
|
|
|
|
# Frederick P. Brooks, Jr. Computer Science Bldg
|
|
|
|
# Chapel Hill, NC 27599-3175
|
|
|
|
# USA
|
|
|
|
#
|
|
|
|
# <http://gamma.cs.unc.edu/FasTC/>
|
|
|
|
|
2013-11-19 17:03:03 +00:00
|
|
|
IF(NOT "" STREQUAL "${AVPCLLIB_ROOT}")
|
|
|
|
INCLUDE_DIRECTORIES(${AVPCLLIB_INCLUDE_DIR})
|
2014-01-21 19:46:25 +00:00
|
|
|
SET(FOUND_NVTT_BPTC_EXPORT TRUE)
|
2013-11-19 17:03:03 +00:00
|
|
|
ENDIF()
|
|
|
|
|
2012-08-25 16:58:20 +00:00
|
|
|
INCLUDE(CheckCXXSourceRuns)
|
2012-08-24 19:56:45 +00:00
|
|
|
|
2012-08-28 19:36:26 +00:00
|
|
|
IF( NOT HAS_INLINE_ASSEMBLY AND NOT HAS_INLINE_ASSEMBLY_WITH_FLAGS )
|
|
|
|
SET( NO_INLINE_ASSEMBLY true )
|
|
|
|
ENDIF()
|
|
|
|
|
2013-03-06 22:16:36 +00:00
|
|
|
# Check to see whether or not our compiler supports atomic operations
|
2014-01-21 19:46:25 +00:00
|
|
|
IF( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR
|
|
|
|
"${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" )
|
2013-03-11 18:51:32 +00:00
|
|
|
SET( COMPILER_CLANG True )
|
2014-01-21 19:46:25 +00:00
|
|
|
ELSEIF( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR
|
|
|
|
"${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" )
|
2013-03-11 18:51:32 +00:00
|
|
|
SET( COMPILER_GNU True )
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
IF( COMPILER_CLANG OR COMPILER_GNU )
|
2013-03-06 22:16:36 +00:00
|
|
|
|
|
|
|
CHECK_CXX_SOURCE_RUNS("
|
|
|
|
int main() {
|
|
|
|
int x = 0;
|
|
|
|
__sync_fetch_and_add(&x, 1);
|
|
|
|
return !x;
|
|
|
|
}"
|
|
|
|
HAS_GCC_ATOMICS
|
|
|
|
)
|
|
|
|
|
|
|
|
ELSEIF( MSVC )
|
|
|
|
|
|
|
|
CHECK_CXX_SOURCE_RUNS("
|
|
|
|
#include <Windows.h>
|
|
|
|
int main() {
|
2013-03-07 00:56:38 +00:00
|
|
|
unsigned int val;
|
|
|
|
unsigned int *x = (unsigned int *)_aligned_malloc(sizeof(int), 32);
|
|
|
|
*x = 0;
|
|
|
|
val = InterlockedIncrement(x);
|
|
|
|
_aligned_free(x);
|
|
|
|
return !val;
|
2013-03-06 22:16:36 +00:00
|
|
|
}"
|
|
|
|
HAS_MSVC_ATOMICS
|
|
|
|
)
|
|
|
|
|
|
|
|
ENDIF()
|
2013-09-13 23:36:37 +00:00
|
|
|
|
2013-03-06 22:16:36 +00:00
|
|
|
IF( HAS_MSVC_ATOMICS OR HAS_GCC_ATOMICS )
|
|
|
|
SET(HAS_ATOMICS true)
|
|
|
|
ENDIF()
|
|
|
|
|
2012-08-24 19:56:45 +00:00
|
|
|
CONFIGURE_FILE(
|
2014-01-21 19:46:25 +00:00
|
|
|
"config/BPTCConfig.h.in"
|
2014-11-18 22:07:26 +00:00
|
|
|
"include/FasTC/BPTCConfig.h"
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(LIBRARY_HEADERS
|
|
|
|
"include/FasTC/BPTCCompressor.h"
|
|
|
|
"include/FasTC/Shapes.h"
|
2012-08-24 19:56:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SET( HEADERS
|
2014-01-21 19:46:25 +00:00
|
|
|
config/BPTCConfig.h.in
|
2014-11-20 00:09:53 +00:00
|
|
|
src/AnchorTables.h
|
2014-01-21 19:46:25 +00:00
|
|
|
src/CompressionMode.h
|
2013-09-13 23:36:37 +00:00
|
|
|
src/RGBAEndpoints.h
|
2013-01-30 23:03:47 +00:00
|
|
|
src/ParallelStage.h
|
2014-11-18 22:07:26 +00:00
|
|
|
${LIBRARY_HEADERS}
|
2012-08-24 19:56:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SET( SOURCES
|
2014-01-21 19:46:25 +00:00
|
|
|
src/Compressor.cpp
|
2014-11-20 00:09:53 +00:00
|
|
|
src/Decompressor.cpp
|
2013-09-13 23:36:37 +00:00
|
|
|
src/RGBAEndpoints.cpp
|
2013-01-30 23:03:47 +00:00
|
|
|
src/ParallelStage.cpp
|
2012-08-24 19:56:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
IF( HAS_SSE_41 )
|
2012-08-25 16:58:20 +00:00
|
|
|
|
2013-09-13 23:36:37 +00:00
|
|
|
IF ( HAS_SSE_POPCNT )
|
|
|
|
IF( MSVC )
|
|
|
|
ADD_DEFINITIONS( /arch:SSE4.2 )
|
|
|
|
ELSE() #Assume GCC
|
|
|
|
ADD_DEFINITIONS( -msse4.2 )
|
2012-08-25 16:58:20 +00:00
|
|
|
ENDIF()
|
2013-09-13 23:36:37 +00:00
|
|
|
ELSE()
|
|
|
|
IF( MSVC )
|
|
|
|
ADD_DEFINITIONS( /arch:SSE4.1 )
|
|
|
|
ELSE() #Assume GCC
|
|
|
|
ADD_DEFINITIONS( -msse4.1 )
|
|
|
|
ENDIF()
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
SET( HEADERS
|
|
|
|
${HEADERS}
|
|
|
|
src/RGBAEndpointsSIMD.h
|
2014-01-21 19:46:25 +00:00
|
|
|
src/CompressionModeSIMD.h
|
2013-09-13 23:36:37 +00:00
|
|
|
)
|
2012-08-25 16:58:20 +00:00
|
|
|
|
2013-09-13 23:36:37 +00:00
|
|
|
SET( SOURCES
|
|
|
|
${SOURCES}
|
2014-01-21 19:46:25 +00:00
|
|
|
src/CompressorSIMD.cpp
|
2013-09-13 23:36:37 +00:00
|
|
|
src/RGBAEndpointsSIMD.cpp
|
|
|
|
)
|
2012-08-24 19:56:45 +00:00
|
|
|
ENDIF( HAS_SSE_41 )
|
|
|
|
|
2012-08-28 19:36:26 +00:00
|
|
|
IF( HAS_INLINE_ASSEMBLY_WITH_FLAGS )
|
|
|
|
IF( MSVC )
|
|
|
|
# !FIXME!
|
|
|
|
ELSE()
|
|
|
|
ADD_DEFINITIONS( -fasm-blocks )
|
|
|
|
ENDIF()
|
|
|
|
ENDIF()
|
|
|
|
|
2013-11-19 17:03:03 +00:00
|
|
|
IF(NOT "" STREQUAL "${AVPCLLIB_ROOT}")
|
|
|
|
SET( SOURCES
|
|
|
|
${SOURCES}
|
|
|
|
src/CompressNVTT.cpp
|
|
|
|
)
|
|
|
|
ENDIF()
|
|
|
|
|
2014-11-18 22:07:26 +00:00
|
|
|
SET(BPTC_INCLUDES_DIR ${FasTC_BINARY_DIR}/BPTCEncoder/include/FasTC)
|
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_SOURCE_DIR}/Base/include)
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_BINARY_DIR}/Base/include)
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_SOURCE_DIR}/BPTCEncoder/include)
|
|
|
|
INCLUDE_DIRECTORIES(${FasTC_BINARY_DIR}/BPTCEncoder/include)
|
|
|
|
|
2012-08-24 19:56:45 +00:00
|
|
|
ADD_LIBRARY( BPTCEncoder
|
2013-09-13 23:36:37 +00:00
|
|
|
${HEADERS}
|
|
|
|
${SOURCES}
|
2012-08-24 19:56:45 +00:00
|
|
|
)
|
2013-09-13 23:36:37 +00:00
|
|
|
|
2014-11-18 22:07:26 +00:00
|
|
|
INSTALL(TARGETS BPTCEncoder EXPORT FasTCTargets ARCHIVE DESTINATION lib COMPONENT lib)
|
|
|
|
INSTALL(
|
|
|
|
FILES ${LIBRARY_HEADERS} "${BPTC_INCLUDES_DIR}/BPTCConfig.h"
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/FasTC
|
|
|
|
COMPONENT dev)
|
|
|
|
|
2013-09-27 21:30:16 +00:00
|
|
|
TARGET_LINK_LIBRARIES( BPTCEncoder FasTCBase )
|
2013-11-19 17:03:03 +00:00
|
|
|
|
|
|
|
IF(NOT "" STREQUAL "${AVPCLLIB_ROOT}")
|
|
|
|
TARGET_LINK_LIBRARIES( BPTCEncoder avpcl )
|
|
|
|
ENDIF()
|