mirror of
https://github.com/mikeoliphant/neural-amp-modeler-lv2.git
synced 2026-07-19 00:46:23 +02:00
Update Cmake. Update NeuralAudio.
This commit is contained in:
Vendored
+1
-1
Submodule deps/NeuralAudio updated: 2fd2a74469...fec4ea2ca3
+4
-4
@@ -8,8 +8,8 @@ else()
|
|||||||
-Wall
|
-Wall
|
||||||
# -Wpedantic -Wextra -Wstrict-aliasing -Wunreachable-code -Weffc++ -Wno-unused-parameter
|
# -Wpedantic -Wextra -Wstrict-aliasing -Wunreachable-code -Weffc++ -Wno-unused-parameter
|
||||||
"$<$<CONFIG:DEBUG>:-Og;-ggdb>"
|
"$<$<CONFIG:DEBUG>:-Og;-ggdb>"
|
||||||
"$<$<CONFIG:RELWITHDEBINFO>:-Ofast>"
|
"$<$<CONFIG:RELWITHDEBINFO>:-O3>"
|
||||||
"$<$<CONFIG:RELEASE>:-Ofast>"
|
"$<$<CONFIG:RELEASE>:-O3>"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -19,14 +19,14 @@ if (CMAKE_SYSTEM_PROCESSOR MATCHES "(amd64)|(AMD64)|(x86_64)")
|
|||||||
|
|
||||||
if (USE_NATIVE_ARCH)
|
if (USE_NATIVE_ARCH)
|
||||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||||
add_compile_options(/arch:AVX2)
|
add_compile_options(/arch:AVX2 /fp:fast)
|
||||||
message(STATUS "Enabling /arch:AVX2")
|
message(STATUS "Enabling /arch:AVX2")
|
||||||
else()
|
else()
|
||||||
add_compile_options(-march=x86-64-v3)
|
add_compile_options(-march=x86-64-v3)
|
||||||
message(STATUS "Enabling -march=x86-64-v3")
|
message(STATUS "Enabling -march=x86-64-v3")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
set(ENABLE_MULTIFRAME_8X8_CONVOLUTION OFF CACHE BOOL "" FORCE)
|
set(MULTIFRAME_8X8_CONVOLUTION OFF CACHE BOOL "0" FORCE)
|
||||||
endif (USE_NATIVE_ARCH)
|
endif (USE_NATIVE_ARCH)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user