2022-07-05 11:26:52 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
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()
|