How to point Delphi build variables to Continua repository

I have a DUNITX variable set in my IDE exactly as Vincent describes here: https://www.finalbuilder.com/Resources/Blogs/PostId/702/dunitx-has-a-wizard

My Delphi project uses this variable in its search path “$(DUnitX)”.

In my Continua server I have a global repository for DUnitX. How can I point this variable to the repository during build in Continua?

Thanks
Erick

Hi Erick

This post does show how :

https://www.finalbuilder.com/Resources/Blogs/PostId/699/integrating-dunitx-unit-testing-with-continua-ci

but it’s easy to miss if you are a new Continua CI user. On the MSBuild Action properties, add the following:

[code]$$DCC_UnitSearchPath=$$(DCC_UnitSearchPath);$Source.DUnitX$ [/code]

The $Source.DUnitX$ is a reference to my DUnitX repository in Continua CI, if your repository has a different name then that part will need to change.