简体   繁体   中英

Which is the most efficient way to migrate from a VS window c++ project to a linux one?

Currently I'm transferring a c++ project into linux which was previously developed for windows with Visual Studio. I'm using Netbeans/Eclipse for the time being. So I'm wondering whether there is a more efficient way to migrate than that of creating a new c++ project and just adding the cpp and h files, since I have very little experience on VS.

I recommend you to use CMake . CMake is a cross-plattform build tool which allows you to build your program for different platforms. Like this you can also choose your IDE because CMake can build project files for different IDEs.

To start with CMake you should learn the basics as shown here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM