mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:59:05 +08:00
[speexdsp] Only use SSE on x86/amd64
This fixes UWP builds.
This commit is contained in:
parent
e6c65b93b1
commit
746cfad3de
@ -18,7 +18,12 @@ else ()
|
||||
add_definitions(-D_LIB)
|
||||
endif ()
|
||||
|
||||
add_definitions(-D_USE_SSE -DHAVE_CONFIG_H -D_WIN32)
|
||||
add_definitions(-DHAVE_CONFIG_H -D_WIN32)
|
||||
|
||||
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
||||
add_definitions(-D_USE_SSE)
|
||||
endif()
|
||||
|
||||
include_directories("${SOURCE_PATH}/include"
|
||||
"${SOURCE_PATH}/win32")
|
||||
add_library(libspeexdsp ${LIBSPEEXDSP_SOURCES} ${LIBSPEEXDSP_HEADERS})
|
||||
|
Loading…
Reference in New Issue
Block a user