mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 03:59:59 +08:00
14 lines
406 B
CMake
14 lines
406 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(arch LANGUAGES CXX)
|
|
|
|
add_executable(architecture_test)
|
|
set_property(TARGET architecture_test PROPERTY MACOSX_BUNDLE FALSE)
|
|
target_sources(architecture_test PRIVATE arch.cpp)
|
|
|
|
if(EMSCRIPTEN)
|
|
target_compile_options(architecture_test PRIVATE -O2 -msimd128 -msse -msse2)
|
|
endif()
|