2021-09-22 13:11:47 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2019-04-08 15:23:57 +00:00
|
|
|
project(arch LANGUAGES CXX)
|
|
|
|
|
|
|
|
add_executable(architecture_test)
|
|
|
|
set_property(TARGET architecture_test PROPERTY MACOSX_BUNDLE FALSE)
|
|
|
|
target_sources(architecture_test PRIVATE arch.cpp)
|
2021-04-16 05:34:57 +00:00
|
|
|
|
|
|
|
if(EMSCRIPTEN)
|
|
|
|
target_compile_options(architecture_test PRIVATE -O2 -msimd128 -msse -msse2)
|
|
|
|
endif()
|