draw static lib: use sse3 instructions set even on Windows

Summary:
sse3 instructions set exists since 2003/2004. One can consider that computers with Windows have it, these days

Note also that ector and evas also use sse3 instructions without the test disabling the Windows platform

Test Plan: compilation

Reviewers: zmike, raster, cedric, bu5hm4n

Subscribers: bu5hm4n, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9284
This commit is contained in:
Vincent Torri 2019-07-12 12:19:19 +01:00 committed by Carsten Haitzler (Rasterman)
parent 7d33cf977f
commit 9c8a7bce24
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ draw_src = [
draw_opt_lib = [ ]
if cpu_sse3 == true and sys_windows == false
if cpu_sse3 == true
draw_opt = static_library('draw_opt',
sources: [ 'draw_main_sse2.c' ],
include_directories: config_dir + [include_directories(join_paths('..', '..', 'lib'))],