2015-08-24 17:33:30 +00:00
|
|
|
# This file is no longer auto-generated to make the repository builds with GCC
|
|
|
|
# and ARMCC no matter what.
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
|
|
|
|
enable_language(ASM)
|
|
|
|
|
|
|
|
set(YOTTA_AUTO_MICROBIT-DAL_CPP_FILES
|
|
|
|
"MicroBitSuperMain.cpp"
|
|
|
|
"MicroBitI2C.cpp"
|
|
|
|
"MicroBitMultiButton.cpp"
|
|
|
|
"MicroBitFont.cpp"
|
|
|
|
"MicroBit.cpp"
|
|
|
|
"MicroBitButton.cpp"
|
|
|
|
"MicroBitMessageBus.cpp"
|
|
|
|
"MicroBitCompass.cpp"
|
|
|
|
"MicroBitEvent.cpp"
|
|
|
|
"MicroBitFiber.cpp"
|
|
|
|
"ManagedString.cpp"
|
|
|
|
"MicroBitAccelerometer.cpp"
|
|
|
|
"MicroBitIO.cpp"
|
|
|
|
"MicroBitCompat.cpp"
|
|
|
|
"MicroBitImage.cpp"
|
|
|
|
"MicroBitDisplay.cpp"
|
|
|
|
"DynamicPwm.cpp"
|
|
|
|
"MicroBitPin.cpp"
|
|
|
|
"MicroBitSerial.cpp"
|
2015-09-02 17:54:31 +00:00
|
|
|
"MicroBitHeapAllocator.cpp"
|
2015-09-07 09:26:48 +00:00
|
|
|
"ble-services/MicroBitDFUService.cpp"
|
|
|
|
"ble-services/MicroBitEventService.cpp"
|
2015-09-07 16:09:17 +00:00
|
|
|
"ble-services/MicroBitLEDService.cpp"
|
2015-09-09 14:16:11 +00:00
|
|
|
"ble-services/MicroBitAccelerometerService.cpp"
|
2015-08-24 17:33:30 +00:00
|
|
|
)
|
|
|
|
|
2015-09-03 23:08:20 +00:00
|
|
|
if (YOTTA_CFG_MICROBIT_CONFIGFILE)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${YOTTA_FORCE_INCLUDE_FLAG} \"${YOTTA_CFG_MICROBIT_CONFIGFILE}\"")
|
|
|
|
endif ()
|
|
|
|
|
2015-08-24 17:33:30 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
2015-09-07 09:26:48 +00:00
|
|
|
file(REMOVE "asm/CortexContextSwitch.s")
|
|
|
|
configure_file("asm/CortexContextSwitch.s.gcc" "asm/CortexContextSwitch.s" COPYONLY)
|
2015-09-02 17:54:31 +00:00
|
|
|
else()
|
2015-09-07 09:26:48 +00:00
|
|
|
file(REMOVE "asm/CortexContextSwitch.s")
|
|
|
|
configure_file("asm/CortexContextSwitch.s.armcc" "asm/CortexContextSwitch.s" COPYONLY)
|
2015-08-24 17:33:30 +00:00
|
|
|
endif()
|
|
|
|
|
2015-08-24 17:49:25 +00:00
|
|
|
set(YOTTA_AUTO_MICROBIT-DAL_S_FILES
|
2015-09-07 09:26:48 +00:00
|
|
|
"asm/CortexContextSwitch.s"
|
2015-08-24 17:49:25 +00:00
|
|
|
)
|
|
|
|
|
2015-08-24 17:33:30 +00:00
|
|
|
add_library(microbit-dal
|
|
|
|
${YOTTA_AUTO_MICROBIT-DAL_CPP_FILES}
|
|
|
|
${YOTTA_AUTO_MICROBIT-DAL_S_FILES}
|
|
|
|
)
|
|
|
|
|
|
|
|
yotta_postprocess_target(LIBRARY microbit-dal)
|
|
|
|
|
|
|
|
target_link_libraries(microbit-dal
|
|
|
|
mbed-classic
|
|
|
|
ble
|
|
|
|
ble-nrf51822
|
|
|
|
)
|