Visual Studio 2015, how to copy the properties of an existing project, linker paths, etc

Asked 2 years ago, Updated 2 years ago, 52 views

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

2022-09-22 20:37

2 Answers

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.


2022-09-22 20:37

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


2022-09-22 20:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.