robotology / human-sensing

This repository contains software related to human sensing
GNU General Public License v2.0
13 stars 18 forks source link

Remove platform specific project files #1

Closed pattacini closed 9 years ago

pattacini commented 9 years ago

@rezaahmadzadeh we don't commit project files that are platform specific (e.g. Visual Studio *.sln files). Consider cleaning up the repo.

Also the directory name exe is too window-ish...

alecive commented 9 years ago

@rezaahmadzadeh take a look at this: https://github.com/robotology/funny-things

The structure I always use is this (obviously, take this with a grain of salt, everyone has his own preferences):

/root
    CMakeLists.txt
    /app
        CMakeLists.txt
        /conf
        /scripts
    /build (aka "where all the sh*t happens" - NOT VERSIONED)
    /lib (if needed)
        CMakeLists.txt
        /include
        /src
    /modules (or src)
        CMakeLists.txt
        /module1
            CMakeLists.txt
            /include
            /src
        /module2
            CMakeLists.txt
            /include
            /src
rezaahmadzadeh commented 9 years ago

@pattacini removed platform specific files. @alecive tried to get the nearest similarity ;) tnx!

pattacini commented 9 years ago

Great, thanks.