2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-19 13:21:34 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 11:26:52 +00:00
|
|
|
|
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()
|