Fixed cmakelists when target arch not set

matt-add-portrait-aa
Matt Hilton 2022-01-07 21:33:10 +00:00
commit 6d7eda1bcb
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)