cmake armhf: set CPack architecture

This commit is contained in:
nickma 2019-01-09 21:48:01 +01:00
parent b5e3c5324a
commit c7efb2a3ce
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# this one is important
SET(CMAKE_SYSTEM_NAME Linux)
SET(CMAKE_SYSTEM_PROCESSOR armhf)
# specify the cross compiler
SET(CMAKE_C_COMPILER /usr/bin/arm-linux-gnueabihf-gcc)
@ -9,4 +10,7 @@ SET(CMAKE_C_COMPILER /usr/bin/arm-linux-gnueabihf-gcc)
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)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
# set the architecture for CPack (i.e packageing)
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE armhf)