To compile and run this application, you will need to have the following installed on your system:
- GCC (or any compatible C99 compiler)
- Make
- pkg-config
- GTK4 Development Libraries (e.g.,
libgtk-4-devon Debian/Ubuntu,gtk4-develon Fedora, or equivalent for your distribution)
-
Clone the repository:
git clone https://github.com/yourusername/activity_logger.git cd activity_logger -
Build the application: Run the following command in the project root to compile the source code:
make
-
Configuration: The application requires no external configuration files to run. It will default to creating logs directly where the executable is run or in its predefined data directories.
Once built, you can run the application directly from the terminal:
./activity_loggerHere are a few make commands you can run for development and setup:
make: Compiles the source code and creates theactivity_loggerexecutable.make clean: Removes the compiled executable and cleans up the build directory.