Hi Anonymous, The tool is bscmake.exe Try the following: VARIANT dummy = {0}; CString browseInfoFileName; CComPtr pConfigs; //Place the following line into the string above: /o"\my_project\output_folder/project_name.bsc" pConfigs->AddToolSettings(L"bscmake.exe", browseInfoFileName.AllocSysString(), dummy); Better late than never
A
abarbs
@abarbs
Posts
-
Custom AppWizard -
VC6 Custom AppwizardHi, I have created a custom appwizard. I need to know how to update the fields on the general tab of the Project Settings dialog. I have been able to set the options on the Link tab using link.exe as a parameter and cl.exe as a parameter on the C/C++ tab. The following is used to set the MFC usage on the General tab of the Project Settings CComPtr pConfigs; VARIANT dummy = {0}; pConfigs->AddToolSettings(L"mfc", L"0", dummy); Any suggestions welcome. Thanks in advance.