diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/jit/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jit/CMakeLists.txt b/src/jit/CMakeLists.txt index b1c3e09658..69a3fa371c 100644 --- a/src/jit/CMakeLists.txt +++ b/src/jit/CMakeLists.txt @@ -6,6 +6,12 @@ include_directories("../inc") # Enable the following for UNIX altjit on Windows # add_definitions(-DALT_JIT) +if (WIN32) +if (IS_64BIT_BUILD EQUAL 1) + add_definitions(-DFEATURE_SIMD -DFEATURE_AVX_SUPPORT) +endif (IS_64BIT_BUILD EQUAL 1) +endif (WIN32) + set( SOURCES alloc.cpp bitset.cpp |