GithubHelp home page GithubHelp logo

clion_template's Introduction

Clion new project builder script

add this script to your .bashrc or any other equivalent.

new_cpp() {
    if [[ $# -eq 0 ]] ; then
        echo 'usage: new_cpp <project_name>'
    else
        echo "creating '$1' folder from template"
        mkdir $1
        echo "move current directory to '$1'"
        cd $1
        echo "Preparing project for '$1'"
        git clone https://github.com/knavels/clion_template.git .
        rm -rf .git
        rm -rf README.md
        rm -rf LICENSE
        for z in `find . -type f`; do
        sed -e "s/{{project_name}}/$1/g" $z>temp;
        mv temp $z;
        done
        echo "done"
        echo "renaming the clion project settings"
        mv ./.idea/project_name.iml.tmpl ./.idea/$1.iml
        mv ./.idea/gitignore ./.idea/.gitignore
        mv README.tmpl README.md
        echo "done"
        echo "initializing git"
        git init
        echo "committing new changes"
        git add .
        git commit -m "initial commit"
        echo "done"
        echo "important note:"
        echo "in case of build problem in clion, select 'reload cmake project' from 'file' menu"
    fi
}

clion_template's People

Contributors

dezashibi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.