You can get a property of a CMake target that was built using ExternalProject_add
using something like this:
ExternalProject_Get_property(zipper SOURCE_DIR)
message("Source dir of myExtProj = ${SOURCE_DIR}")
How would I save this to another variable, i.e. not SOURCE_DIR
?