Hello all,
I am create C++ project based on make file. However, I have maintain my make file manually. I am trying to create new extension based on Visual Studio SDK. Basically, I want to handle build event and run my compile script. I investigate and see some software can change Platform for custom build.
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Newplatform">
<Configuration>Debug</Configuration>
<Platform>Newplatform</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Newplatform">
<Configuration>Release</Configuration>
<Platform>Newplatform</Platform>
</ProjectConfiguration>
</ItemGroup>
In my vcxproj, this information is Win32. Can I develop my own platform to control build project?
For more information, I am using make file to build profile based on gcc compiler.
Best regards,
Thanh