A simple web Navigator based on Chromium, written in c++ using Qt(5.14.1) framework
- C++11 or higher
-
Qt5 or higher
-
MSVC2017 (Microsoft windows sdk)or higher (The Web Engine compile only with Microsoft's compiler), it doesn't compile with Mingw compiler.
-
Qt5 or higher
- For windows
- Download the FzNavigator Installer(Wizard) here
Use Qt Creator and open the fzNavigator.pro
file the hit the run button to build and run.
-
You'll need to set the
CMAKE_PREFIX_PATH
variable the value must be the path to the Qt compiler
here an example :# For me QT is installed on /home/me/Qt5/ and I use the gcc_64 compiler # So The Cmake Prefix path will be /home/me/Qt5/[the qt version]/gcc_64 # for me the qt version is 5.15.2, so we have :↓ $ cmake -DCMAKE_PREFIX_PATH=/home/me/Qt5/5.15.2/gcc_64
-
In order to have a project directory clean, we recommend to use the
-B
option to specify where to generate the Makefile file. Example :# Here _build is the path to generate the Makefile $ cmake -DCMAKE_PREFIX_PATH=/home/me/Qt5/gcc_64 -B _build
For more option : Cmake doc
Finally use this command to compile with CMake :
cmake -DCMAKE_PREFIX_PATH=/home/me/Qt5/gcc_64 -B _build
Assuming that the Makefile is generated into the _build
folder
$ cd _build
$ make
# Run the program with
$ ./FzNavigator
- Download Qt5 Framwork
- Qt Documentation
Here a thread on stackoverflow that show how to proceed