dk13
dk13

Reputation: 1511

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.

Upvotes: 2

Views: 562

Answers (1)

Janis
Janis

Reputation: 1050

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 in cmake.org - CMake Tutorial.

Upvotes: 3

Related Questions