I am not that much sound in CMake
and which leads to me in this issue. I am trying to use Doxygen
in a project using CMake
. Previously, I have used Doxygen version 1.8.11
which was installed from Ubuntu package manager. I have simply followed the following command to install Doxygen
sudo apt-get install doxygen
And in the project in CMakeLists.txt
file I have included
find_package(Doxygen REQUIRED)
Everything works flawlessly.
But now for a specific reason I have to upgrade my Doxygen
version which is not available in Ubuntu package manager
, that's why I have built the binary by following this. The downloaded Doxygen Source directory
and my project directory
are not the same.
- My query is how can I tell
CMake
to search for this newly installed/buildDoxygen
? - Still, I am finding the version of Doxygen is
1.8.11
- I am using
Ubuntu 16.04
,cmake version 3.19.0-rc3