A simple project aimed to find the anagrams of any given word with the least time possible
To build the app, you need the gtk-framework installed on your system. To run the app, however, you only need the gtk shared objects.
- C
C is a general-purpose, imperative computer programming language, supporting structured programming, lexical variable scope and recursion, while a static type system prevents many unintended operations.
Refer to Wikipedia for more info on C
- GTK+
GTK (formerly GTK+, GIMP Toolkit) is a free and open-source cross-platform widget toolkit for creating graphical user interfaces (GUIs).
Refer to Wikipedia for more info on GTK+
- GLib
GLib is a bundle of three (formerly five) low-level system libraries written in C and developed mainly by GNOME. GLib's code was separated from GTK, so it can be used by software other than GNOME and has been developed in parallel ever since.
Refer to Wikipedia for more info on GLib
- Get the sources from either the Git repository or the CD included with this document.
git clone https://github.com/priority-speed-studios/nag_a_ram.git
or
git clone git@github.com:priority-speed-studios/nag_a_ram.git
- Create a build folder in the primary folder. The path should look like this:
/path/to/nag_a_ram/build
- Now, change directory to the directory
cd build
- Initialize submodules with
git submodule init
git submodule update
- Make sure createCSS.sh has permission to run, if not
sudo chmod +x createCSS.sh
- Buid the project like
cmake .. && make
- Run the app
./nag_a_ram
- Arkajyoti Banerjee - Snowden1738
- Anubhab Mukherjee - phoenix-zero
- Soham Kar - 2bit-hack
This project is licensed under the GNU GENERAL PUBLIC License - see the LICENSE file for details