/qt-notepad

A basic Text Editor program with C++ using Qt

Primary LanguageC++GNU General Public License v3.0GPL-3.0

🚀 qt-notepad

license

qt-notepad is a basic Text Editor program with C++ using Qt

🛠️ Build Instructions for Linux/UNIX

Clone the repository to your directory

git clone https://github.com/xaprier/qt-notepad.git

Enter the direcotry of the source code

cd qt-notepad/

Build the makefile with CMake, if you don't have cmake you have to install it.

cmake -G "Unix Makefiles" -B "build"

Than our Makefile is ready for build the source code. We have to access the directory of makefile and run make.

cd build && make -j$(nproc)

Than our compiled program is ready for run in the directory of the makefile with the name "qt-notepad" You can run the program with this command

./qt-notepad

📚 Dependencies

  • Qt::Widgets module
  • CMake(Building project)
  • Git(Just for cloning repository)