https://github.com/Kitware/CMake
Revision 9858381ba8ed8a332169e2d0b3a2ce54fdd51712 authored by Brad King on 16 September 2021, 12:20:09 UTC, committed by Kitware Robot on 16 September 2021, 12:20:30 UTC
8f52451682 Use new SetOption signatures
8d0ae460de cmCTestGenericHandler::SetOption accepts cmProp or std::string

Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Merge-request: !6525
2 parent s 98f78af + 8f52451
Raw File
Tip revision: 9858381ba8ed8a332169e2d0b3a2ce54fdd51712 authored by Brad King on 16 September 2021, 12:20:09 UTC
Merge topic 'enh-CTest-SetOption-accepts-new-types'
Tip revision: 9858381
CMakeDetermineASM-ATTCompiler.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.


# determine the compiler to use for ASM using AT&T syntax, e.g. GNU as

set(ASM_DIALECT "-ATT")
set(CMAKE_ASM${ASM_DIALECT}_COMPILER_LIST ${_CMAKE_TOOLCHAIN_PREFIX}gas ${_CMAKE_TOOLCHAIN_PREFIX}as)
include(CMakeDetermineASMCompiler)
set(ASM_DIALECT)
back to top