How to configure a custom child image to network core on nrf5340dk

Hi

How do I configure a custom child image for the network core on nrf5340dk? 

We're using Zephyr RTOS, and want to do a multi image build when building the application (nrf5340dk_nrf5340_cpuapp).

Not exactly sure how to configure the build system. 
Tried adding:

add_child_image(
NAME network_core
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/network_core
DOMAIN CPUNET
)

and in the app directory added a directory called network_core:

app/network_core

What's needed to go into the app/network_core directory?

source files, a new CMakeLists.txt?

Related