Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aadarshadhakalg authored Jul 1, 2021
1 parent be1c79f commit ec7bf48
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,30 @@
A sample command-line application with an entrypoint in `bin/`, library code
in `lib/`, and example unit test in `test/`.
# CMAKENEW
A command line utility to bootstrap simple cmake project.

## Installation

### Linux

** Run this command **

```
sudo apt install wget && wget https://raw.githubusercontent.com/aadarshadhakalg/cmakenew/master/downloads/linux/cmakenew && sudo mkdir /opt/cmakenew && sudo cp cmakenew /opt/cmakenew/cmakenew && sudo chmod +x /opt/cmakenew/cmakenew && echo 'export PATH="/opt/cmakenew/:$PATH"' >> $HOME/.bashrc && source $HOME/.bashrc
```


### Usage

Create a new project

Usage: cmakenew <command> [arguments]

Global options:
-h, --help Print this usage information.
-i, --info Shows Developer Info
-d, --doctor Environment Checkup

Available commands:
create Creates new cmake project

Run "cmakenew help <command>" for more information about a command

0 comments on commit ec7bf48

Please sign in to comment.