mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +02:00
parent
9eeb64a780
commit
92eb6a2f45
@ -27,6 +27,7 @@ parentheses):
|
|||||||
* GNU flex (flex) >= 2.5.35
|
* GNU flex (flex) >= 2.5.35
|
||||||
* recommended: libexecinfo on FreeBSD (automatically used when Icinga 2 is
|
* recommended: libexecinfo on FreeBSD (automatically used when Icinga 2 is
|
||||||
installed via port or package)
|
installed via port or package)
|
||||||
|
* recommended: GNU readline (readline-devel on RHEL, libreadline-dev on Debian)
|
||||||
* optional: MySQL (mysql-devel on RHEL, libmysqlclient-dev on Debian); set CMake
|
* optional: MySQL (mysql-devel on RHEL, libmysqlclient-dev on Debian); set CMake
|
||||||
variable `ICINGA2_WITH_MYSQL` to disable this module
|
variable `ICINGA2_WITH_MYSQL` to disable this module
|
||||||
* optional: PostgreSQL (postgresql-devel on RHEL, libpq-dev on Debian); set CMake
|
* optional: PostgreSQL (postgresql-devel on RHEL, libpq-dev on Debian); set CMake
|
||||||
|
@ -35,7 +35,11 @@ endif()
|
|||||||
|
|
||||||
add_library(cli SHARED ${cli_SOURCES})
|
add_library(cli SHARED ${cli_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(cli ${Boost_LIBRARIES} readline base config remote)
|
target_link_libraries(cli ${Boost_LIBRARIES} base config remote)
|
||||||
|
|
||||||
|
if(HAVE_LIBREADLINE)
|
||||||
|
target_link_libraries(cli readline)
|
||||||
|
endif()
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
cli PROPERTIES
|
cli PROPERTIES
|
||||||
|
Loading…
x
Reference in New Issue
Block a user