pull/13/head
matt 2021-10-05 21:20:41 +01:00
parent e29f2cd9d1
commit d327d9059c
No known key found for this signature in database
GPG Key ID: 089C8B076569DD58
1 changed files with 2 additions and 2 deletions

View File

@ -2,14 +2,14 @@ cmake_minimum_required(VERSION 3.5.1)
if( TARGET_ARCH STREQUAL "amd64" )
message("Building for amd64")
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "amd64")
elseif( TARGET_ARCH STREQUAL "armhf" )
message("Building for armhf")
set(CMAKE_C_COMPILER /usr/bin/arm-linux-gnueabihf-gcc-8)
set(CMAKE_CXX_COMPILER /usr/bin/arm-linux-gnueabihf-g++-8)
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "armhf")
else()
message("Unknown target architecture. Exiting")
return()
message("Target Architecture not specified, not cross compiling")
endif()
set (aasdk_VERSION_MAJOR 3)