TargetManager

Dependents:   TargetManagerManualTest NerfUSTarget

Committer:
dupm2216
Date:
Mon Mar 27 22:25:43 2017 +0000
Revision:
6:b6ecf23f24ce
Parent:
1:45fbca28eb57
Make it work with local build; ; Move mbed dependant sources to mbed_source. This way, the local build will ignore them. Changed TargetManager to TargetManagerInterface. This library won't give a working TargetManager, this will be the user's job.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dupm2216 1:45fbca28eb57 1 cmake_minimum_required(VERSION 3.5)
dupm2216 1:45fbca28eb57 2
dupm2216 1:45fbca28eb57 3 project(target_manager)
dupm2216 1:45fbca28eb57 4
dupm2216 1:45fbca28eb57 5 include_directories(include)
dupm2216 1:45fbca28eb57 6
dupm2216 1:45fbca28eb57 7 file(GLOB SOURCES "source/*.cpp")
dupm2216 1:45fbca28eb57 8
dupm2216 1:45fbca28eb57 9 add_library(target_manager ${SOURCES})