How to build external Apps that depends on iMSTK

Hi everyone, I’d like to know if there is an easy way to to add Cmake config files in a new (external) project so there can be easly to play with iMSTK modules. I’ve started with the provided examples but making changes takes too long to recompile. There would be very nice to have CMAKE config files so iMSTK can be accessible in a new project like:

project(Example-TestApp)
find_package(iMSTK REQUIRED)
include(${IMSTK_USE_FILE})
#-----------------------------------------------------------------------------

Create executable

#-----------------------------------------------------------------------------
add_executable(test TestApp.cpp)
#-----------------------------------------------------------------------------

Add shaders

#-----------------------------------------------------------------------------
include(imstkCopyAndCompileShaders)
CopyAndCompileShaders()
#-----------------------------------------------------------------------------

Link libraries to executable

#-----------------------------------------------------------------------------
target_link_libraries(test ${IMSTK_LIBRARIES})

Thanks for any clue you can provide on this topic,