Dear People
Thanks for all effort, like this project. I have build the project in VS2019 with cmake (C++11)
I have update internally some project cmake files to work with Visual studio (MVC Compiler):
target_optimizations.cmake:
line 62: set(TARGET_C_ARCH "none" CACHE STRING "msvc target C architecture (/arch): SSE2/AVX/AVX2/AVX512")
changed to: ADD_DEFINITIONS(/arch:AVX2)
Compiler accept only one value. AVX, AVX2 or AVX512
The same for line 109
set(TARGET_CXX_ARCH "none" CACHE STRING "msvc target C++ architecture (/arch): SSE2/AVX/AVX2/AVX512")
ADD_DEFINITIONS(/arch:AVX2)
Peter
Dear People
Thanks for all effort, like this project. I have build the project in VS2019 with cmake (C++11)
I have update internally some project cmake files to work with Visual studio (MVC Compiler):
target_optimizations.cmake:
line 62: set(TARGET_C_ARCH "none" CACHE STRING "msvc target C architecture (/arch): SSE2/AVX/AVX2/AVX512")
changed to: ADD_DEFINITIONS(/arch:AVX2)
Compiler accept only one value. AVX, AVX2 or AVX512
The same for line 109
set(TARGET_CXX_ARCH "none" CACHE STRING "msvc target C++ architecture (/arch): SSE2/AVX/AVX2/AVX512")
ADD_DEFINITIONS(/arch:AVX2)
Peter