25 lines
826 B
CMake
25 lines
826 B
CMake
# this one is important
|
|
SET(CMAKE_SYSTEM_NAME Linux)
|
|
|
|
#
|
|
#this one not so much
|
|
SET(CMAKE_SYSTEM_VERSION 1)
|
|
|
|
# specify the cross compiler
|
|
|
|
SET(CMAKE_C_COMPILER
|
|
/home/jbnadal/sources/Domo/firmware/board/raspberrypi/cross/usr/bin/arm-buildroot-linux-gnueabihf-gcc)
|
|
SET(CMAKE_CXX_COMPILER
|
|
/home/jbnadal/sources/Domo/firmware/board/raspberrypi/cross/usr/bin/arm-buildroot-linux-gnueabihf-g++)
|
|
|
|
# OSX
|
|
# SET(CMAKE_SYSTEM_NAME Linux)
|
|
# SET(CMAKE_C_COMPILER /Users/jbnadal/xtools/rpi/bin/arm-linux-gnueabihf-gcc)
|
|
# SET(CMAKE_CXX_COMPILER /Users/jbnadal/xtools/rpi/bin/arm-linux-gnueabihf-g++)
|
|
|
|
# search for programs in the build host directories
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
# for libraries and headers in the target directories
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|