There's a sample project that's quite complicated to locate multiple header files, set up libraries, set up preprocessors, and so on. If we can copy the existing project and modify the contents of the existing cpp file, we will be able to overcome the difficult process such as setting up a new setting, but there seems to be no function like exporting a project export
Actually, I'd do it if I had to set up a project every time, but I'm looking for a faster way.
Please give me some advice on the related part. It doesn't matter if it's not necessarily a project export.
visual-studio
Export functionality exists. It comes out well on msdn.
https://msdn.microsoft.com/ko-kr/library/xkh1wxd8.aspx
In the case of Visual Studio 2017, please note that it has been moved from the File menu to the Project menu.
VS also supports makefile. There's exactly nmake.
You can make it into a mkefile and convert it into a visual studio project.
https://www.codeproject.com/Tips/870845/Automatically-Translate-makefile-C-Cplusplus-Proje
How to use nmake: https://msdn.microsoft.com/en-us/library/f35ctcxw.aspx
© 2024 OneMinuteCode. All rights reserved.