Build fineFTP Server from source
masterFollow these steps to clone the repository, initialize submodules, and build the project using CMake.
Clone and initialize submodules:
git clone https://github.com/eclipse-ecal/fineftp-server.git cd fineftp-server git submodule init git submodule updateConfigure with CMake:
mkdir _build cd _build cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=_installBuild:
- Linux: Run
make. - Windows: Open
_build\fineftp.slnin Visual Studio and build the example project.
- Linux: Run