Hello abhishek.kumar@chassisbrakes.com,
Unfortunately, as far as I know there is no such option.
However, having such need I would modify the existing c structure by using the #ifdef directive for the settings for 20MHz clock and on the #else I would use the existing lines of code. And in the project that requires the 20MHz crystal I would use the custom code to define that macro.
#ifdef CRYSTAL_20
//clock code for the new crystal settings
#else
//already existing code
#endif
Inside the MBDT project inserted as custom code the following line:
#define CRYSTAL_20 1
For more about custom code you can have a look on this topic https://community.nxp.com/message/1032329
Hope this helps you!
Marius