mirror of
https://github.com/dougg3/mac-rom-simm-programmer.git
synced 2024-11-22 06:32:23 +00:00
16 lines
436 B
CMake
16 lines
436 B
CMake
|
# This will tell CMake that we are cross compiling
|
||
|
set(CMAKE_SYSTEM_NAME Generic)
|
||
|
set(CMAKE_SYSTEM_VERSION 1)
|
||
|
set(CMAKE_SYSTEM_PROCESSOR avr)
|
||
|
|
||
|
# Make sure it knows what binaries to use
|
||
|
set(CMAKE_AR avr-ar)
|
||
|
set(CMAKE_ASM_COMPILER avr-as)
|
||
|
set(CMAKE_C_COMPILER avr-gcc)
|
||
|
set(CMAKE_CXX_COMPILER avr-g++)
|
||
|
set(CMAKE_LINKER avr-ld)
|
||
|
set(CMAKE_OBJCOPY avr-objcopy)
|
||
|
set(CMAKE_RANLIB avr-ranlib)
|
||
|
set(CMAKE_SIZE avr-size)
|
||
|
set(CMAKE_STRIP avr-strip)
|