All Projects → evilsocket → fido

evilsocket / fido

Licence: GPL-3.0 license
Fido is a minimalistic, IDE and language agnostic project generator supporting various toolchains and build systems.

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects
CMake
9771 projects
c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
go
31211 projects - #10 most used programming language

FIDO

Fido is a minimalistic, IDE and language agnostic project generator supporting various toolchains and build systems.

Installation

python setup.py build
sudo python setup.py install

Usage

Usage: fido <action> [template] (path)

Available actions:

                   help : Print the usage menu.
                 create : Create a project with the specified template, requires a template and a path.
                    add : Add one or multiple files to the proper folders by their extensions.
                  build : Build the current project.
                  clean : Clean built files for the current project.
                rebuild : Clean + Build.
                  reset : Available only for certain templates, remote every build generated file.

Available templates:

         android-make-c : Create a native Android C project based on Makefile.
       android-make-cpp : Create a native Android C++ project based on Makefile.
    android-ndk-build-c : Create a native Android C project based on the ndk-build utility.
                cmake-c : Create a C project based on CMake.
              cmake-cpp : Create a C++ project based on CMake.
                 make-c : Create a C project based on Makefile.
               make-cpp : Create a C++ project based on Makefile.
                make-go : Create a Go project based on Makefile.

Example

$ fido create make-c sample-project

Creating project 'sample-project' with template 'make-c' ...

$ cd sample-project
$ fido add io.h io.c networking.h networking.c

Creating 'include/io.h' ...
Creating 'src/io.c' ...
Creating 'include/networking.h' ...
Creating 'src/networking.c' ...

$ fido build
Building ...

$ ./sample-project

Hello World from sample-project !

Video Example

asciicast

License

This project is copyleft of Simone Margaritelli and released under the GPL 3 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].