https://github.com/Kitware/CMake
Revision 45b1e31451dc9e393703380282434a2456284954 authored by Brad King on 18 December 2014, 15:16:40 UTC, committed by CMake Topic Stage on 18 December 2014, 15:16:40 UTC
eeaa25e5 Add 'ANDROID_API_MIN' target property to set Android Target MIN API

2 parent s a39e65a + eeaa25e
Raw File
Tip revision: 45b1e31451dc9e393703380282434a2456284954 authored by Brad King on 18 December 2014, 15:16:40 UTC
Merge topic 'vs-nsight-tegra-min-api'
Tip revision: 45b1e31
CMakeDetermineASM-ATTCompiler.cmake

#=============================================================================
# Copyright 2007-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of CMake, substitute the full
#  License text for the above reference.)

# 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