blob: 530af437b17772f65e2bd6ddf04904bb6b780838 [file] [log] [blame]
Marat Dukhanf10168c2019-12-09 16:31:10 -08001# Copyright 2019 Google LLC
2#
3# This source code is licensed under the BSD-style license found in the
4# LICENSE file in the root directory of this source tree.
5
6set(CMAKE_SYSTEM_NAME Linux)
7set(CMAKE_SYSTEM_PROCESSOR armv7)
8
9set(CMAKE_FIND_ROOT_PATH /usr/arm-linux-gnueabihf)
10
11set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc)
12set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++)
13
14set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
15set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
16set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
17set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
18