# CMake toolchain file for building ARM software on OI environment# this one is importantSET(CMAKE_SYSTEM_NAME Linux)#this one not so muchSET(CMAKE_SYSTEM_VERSION 1)# specify the cross compilerSET(CMAKE_C_COMPILER /usr/bin/arm-linux-gnueabi-gcc)SET(CMAKE_CXX_COMPILER /usr/bin/arm-linux-gnueabi-g++)SET(CMAKE_STRIP /usr/bin/arm-linux-gnueabi-strip)# where is the target environment SET(CMAKE_FIND_ROOT_PATH /usr/arm-linux-gnueabi)# search for programs in the build host directoriesSET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)# for libraries and headers in the target directoriesSET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)