summaryrefslogtreecommitdiff
path: root/cmake/Modules/FindLOG4CPP.cmake
Commit message (Collapse)AuthorAgeFilesLines
* logging core: replace log4cpp by spdlogMarcus Müller2021-11-191-62/+0
| | | | | | | | also: enable formerly disabled qa_logger tests This replaces log4cpp with spdlog. Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* Fix typo in Log4Cpp cmake filejapm482019-12-201-1/+1
|
* FindLOG4CPP: canonical path orderingMarcus Müller2019-09-291-3/+3
| | | | | | | | | | | That means: * /usr first, * /usr/local second, * /opt only as testament to the fact that there's hilariously non-standard installations. Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* Update log4cpp cmake module to search in lib64 directories.Philip Balister2019-09-291-1/+1
| | | | Signed-off-by: Philip Balister <philip@balister.org>
* Fix typo that creates build issues with GR dependenciesEmmanuel Blot2019-08-261-1/+1
|
* cmake: correct typo in FindLog4Cpp cmake moduleAndrej Rode2019-07-171-1/+1
| | | | | | | Fixes bug with empty error message on a failure to find Log4Cpp libraries. Closes #2599
* cmake: Update to modern CMake usageAndrej Rode2019-03-041-0/+62
This includes using target based setting of includes and link libraries. This will transitively add the includes and linking flags to dependent targets. This is still a work in progress since only the dynamic libraries have been touched and not all of include_directories directives are gone yet. cmake: remove GR_INCLUDE_SUBDIRECTORY macro Previously this macro was used to inject subdirectories in the current CMake namespace. This is generally undesired and pollutes the current context. previously GNU Radio CMake had a non-default option ENABLE_STATIC_LIBS to build both, shared libraries and static libraries. This seems to be a construction taken over from autotools and serves no purpuose in CMake and complicates the library building. cmake: remove GR_LIBTOOL and la generation support This looks like it was primarily used to support projects using autotools, but comments state that the generated .la files aren't compatible with autotools anyway. cmake: Bump required CMake version to 3.8 UseSWIG cmake uses syntax which requires at least CMake 3.8 and is non-trivial to change