Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-10-02 21:16:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-02 21:16:28 +0400
commitda73642ed1415e4547d485cbfea42672c9da0695 (patch)
treeddf3b044fc7ec1943ebb8cdebb79c6a6bb6591f5 /build_files
parent07ad83a4398473da1a5f32607f64cd6cdfaa72a3 (diff)
remove find samplerate module, use -msse2 flag for intel c++ since its supported.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/Modules/FindSamplerate.cmake70
-rw-r--r--build_files/cmake/macros.cmake4
2 files changed, 2 insertions, 72 deletions
diff --git a/build_files/cmake/Modules/FindSamplerate.cmake b/build_files/cmake/Modules/FindSamplerate.cmake
deleted file mode 100644
index ea7a0d7a18c..00000000000
--- a/build_files/cmake/Modules/FindSamplerate.cmake
+++ /dev/null
@@ -1,70 +0,0 @@
-# - Find Samplerate library
-# Find the native Samplerate includes and library
-# This module defines
-# SAMPLERATE_INCLUDE_DIRS, where to find samplerate.h, Set when
-# SAMPLERATE_INCLUDE_DIR is found.
-# SAMPLERATE_LIBRARIES, libraries to link against to use Samplerate.
-# SAMPLERATE_ROOT_DIR, The base directory to search for Samplerate.
-# This can also be an environment variable.
-# SAMPLERATE_FOUND, If false, do not try to use Samplerate.
-#
-# also defined, but not for general use are
-# SAMPLERATE_LIBRARY, where to find the Samplerate library.
-
-#=============================================================================
-# Copyright 2011 Blender Foundation.
-#
-# Distributed under the OSI-approved BSD License (the "License");
-# see accompanying file Copyright.txt for details.
-#
-# This software is distributed WITHOUT ANY WARRANTY; without even the
-# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the License for more information.
-#=============================================================================
-
-# If SAMPLERATE_ROOT_DIR was defined in the environment, use it.
-IF(NOT SAMPLERATE_ROOT_DIR AND NOT $ENV{SAMPLERATE_ROOT_DIR} STREQUAL "")
- SET(SAMPLERATE_ROOT_DIR $ENV{SAMPLERATE_ROOT_DIR})
-ENDIF()
-
-SET(_samplerate_SEARCH_DIRS
- ${SAMPLERATE_ROOT_DIR}
- /usr/local
- /sw # Fink
- /opt/local # DarwinPorts
- /opt/csw # Blastwave
-)
-
-FIND_PATH(SAMPLERATE_INCLUDE_DIR
- NAMES
- samplerate.h
- HINTS
- ${_samplerate_SEARCH_DIRS}
- PATH_SUFFIXES
- include
-)
-
-FIND_LIBRARY(SAMPLERATE_LIBRARY
- NAMES
- samplerate
- HINTS
- ${_samplerate_SEARCH_DIRS}
- PATH_SUFFIXES
- lib64 lib
- )
-
-# handle the QUIETLY and REQUIRED arguments and set SAMPLERATE_FOUND to TRUE if
-# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(Samplerate DEFAULT_MSG
- SAMPLERATE_LIBRARY SAMPLERATE_INCLUDE_DIR)
-
-IF(SAMPLERATE_FOUND)
- SET(SAMPLERATE_LIBRARIES ${SAMPLERATE_LIBRARY})
- SET(SAMPLERATE_INCLUDE_DIRS ${SAMPLERATE_INCLUDE_DIR})
-ENDIF(SAMPLERATE_FOUND)
-
-MARK_AS_ADVANCED(
- SAMPLERATE_INCLUDE_DIR
- SAMPLERATE_LIBRARY
-)
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index ac77872da83..e4665124c8f 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -333,8 +333,8 @@ macro(TEST_SSE_SUPPORT
set(${_sse_flags} "/arch:SSE")
set(${_sse2_flags} "/arch:SSE2")
elseif(CMAKE_C_COMPILER_ID MATCHES "Intel")
- set(${_sse_flags}) # icc only has sse2
- set(${_sse2_flags} "-xSSE2")
+ set(${_sse_flags} "") # icc defaults to -msse
+ set(${_sse2_flags} "-msse2")
else()
message(WARNING "SSE flags for this compiler: '${CMAKE_C_COMPILER_ID}' not known")
set(${_sse_flags})