Remove gen_config interface library target

pull/13566/head
Robert Walton 2020-07-27 14:41:39 +01:00 committed by Hugues Kamba
parent 396ddc7a4d
commit 0e1770daf5
2 changed files with 1 additions and 5 deletions

View File

@ -13,10 +13,6 @@ endif()
# Include mbed.h and config from generate folder
target_include_directories(mbed-os PUBLIC .)
# Link config from generate folder
# TODO: @mbed-os-tools We need to get this gen_config somehow set up
target_link_libraries(mbed-os PRIVATE gen_config)
# Default build
add_subdirectory(cmsis)
add_subdirectory(components)

View File

@ -25,7 +25,7 @@ endif()
add_subdirectory(mbed-os)
# Link the example libs
target_link_libraries(app mbed-os gen_config)
target_link_libraries(app mbed-os)
# I have to leave this here as linker is processed after mbed-os added, and can't be in toolchain.cmake
# as its global symbol is empty at that stage, this needs more work