What's the best and easiest way to build (for Linux) a C++ application which was written in Visual Studio? The code itself is ready - I used only cross-platform libs.
Is it possible to prepare everything under Windows in Visual Studio and then build it with a CLI tool under Linux? Are there any docs describing this?
EDIT: Some more information:
Libs used: stl, wxwidgets, boost, asio, cryptlib.
Very little Linux know-how.
EDIT#2: I chose the following solution: Make new project with kdevelop and compile everything there.