summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRr422018-06-07 15:01:46 +0530
committerRr422018-06-07 15:01:46 +0530
commit45ff44fa87c9c9ac6a2f482eb3228cb5ddf71bf4 (patch)
tree85dc09598a059dfe08a9c72b726193abe9a049ec /README.md
parent731c0f42e34a6ddf1369a6ff51413e2935e33098 (diff)
downloadLDMicroGtk-45ff44fa87c9c9ac6a2f482eb3228cb5ddf71bf4.tar.gz
LDMicroGtk-45ff44fa87c9c9ac6a2f482eb3228cb5ddf71bf4.tar.bz2
LDMicroGtk-45ff44fa87c9c9ac6a2f482eb3228cb5ddf71bf4.zip
Updated readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 22 insertions, 3 deletions
diff --git a/README.md b/README.md
index abaf498..52e1e42 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,29 @@
-To cmpile using cmake use the following commands:
+# LDMicro for Linux
+This is a linux compatible version of the original LDMicro program.
+
+GitHub repository of LDMicro for windows can be found [here](https://github.com/akshay-c/LDmicro)
+
+## External package dependencies
+The install commands for all the packages required to compile LDMicro for Linux are given below:
+
+_Note_: Be sure to run `sudo apt-get update` and `sudo apt-get upgrade` before running the following commands
+
+* Cmake: `sudo apt-get install cmake`
+* GTK3: `sudo apt-get install libgtk-3-dev`
+* MinGW:
+ ```
+ sudo apt-get install gcc-mingw-w64
+ sudo apt-get install g++-mingw-w64
+ ```
+* Perl: `sudo apt-get install perl`
+
+## LDMicro for Linux can be compiled and run using the following commands
+### To cmpile using cmake use the following commands
```
cd /LDmicro/build
cmake ..
make
```
-
-To run program in linux use the following command:
+### To run program in linux use the following command
`./LDmicro /c <.ld file to compile> <.hex destination file>`