mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
9 lines
415 B
CMake
9 lines
415 B
CMake
|
|
#This file is just a sample. You may need to modify it before using.
|
||
|
|
SET(CMAKE_SYSTEM_NAME Linux)
|
||
|
|
SET(CMAKE_SYSTEM_VERSION 1)
|
||
|
|
SET(CMAKE_C_COMPILER arm-none-linux-gnueabihf-gcc)
|
||
|
|
SET(CMAKE_CXX_COMPILER arm-none-linux-gnueabihf-g++)
|
||
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
|