Categorie

Archivio Articoli

Categorie

Commenti recenti

Adding a library to Eclipse CDT C/C++ Project

eclipse-logo

 

 

 

 

 

 

Adding a library to Eclipse CDT

If you want to add a library (e.g: libxml2) to your C/C++ project in CDT Eclipse:

1. Add the library (xml2) in Project Properties -> C/C++ Build -> Settings -> GCC C Linker -> Libraries

Adding-libraries-to-Eclipse-CDT-01

 

2. Add the library directory (/usr/include/libxml2) in Project Properties -> C/C++ Build -> Settings -> GCC C Compiler -> Includes

Adding-libraries-to-Eclipse-CDT-02

Enjoy

[GWT] Change CSS on the fly

eclipse-gwtChange CSS on the fly in GWT

via  Valeo Software: Change CSS on the fly in GWT.

[git] Vademecum

logo-git

 

In software development, Git /ɡɪt/ is a distributed version control and source code management (SCM) system with an emphasis on speed. Initially designed and developed by Linus Torvalds for Linux kernel development in 2005, Git is reported to have 30% market adoption as of 2013.
[wikipedia.org]

 

# Retrieve a project

git clone <git-location> <folder-name>

# Update a project

git pull

# Adding a file

git add <filename>

# Commit

git commit -a -m 'Description'

# Upload modified project

git push