Use _LDFLAGS instead of _LIBRARIES
The _LDFLAGS vars which pkg_check_modules() set also include -L flags which are necessary so that the linker can find the libs it needs to find. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
02e39eb8e0
commit
56d6e3726b
|
@ -175,7 +175,7 @@ if(NOT LUA51_FOUND AND NOT LUA50_FOUND) # This is a workaround to a cmake bug
|
|||
endif()
|
||||
|
||||
set(AWESOME_REQUIRED_LIBRARIES
|
||||
${AWESOME_COMMON_REQUIRED_LIBRARIES}
|
||||
${AWESOME_COMMON_REQUIRED_LDFLAGS}
|
||||
${AWESOME_REQUIRED_LIBRARIES}
|
||||
${LIB_EV}
|
||||
${LUA_LIBRARIES})
|
||||
|
@ -195,7 +195,7 @@ set(AWESOME_REQUIRED_INCLUDE_DIRS
|
|||
if(WITH_DBUS)
|
||||
pkg_check_modules(DBUS dbus-1)
|
||||
if(DBUS_FOUND)
|
||||
set(AWESOME_OPTIONAL_LIBRARIES ${AWESOME_OPTIONAL_LIBRARIES} ${DBUS_LIBRARIES})
|
||||
set(AWESOME_OPTIONAL_LIBRARIES ${AWESOME_OPTIONAL_LIBRARIES} ${DBUS_LDFLAGS})
|
||||
set(AWESOME_OPTIONAL_INCLUDE_DIRS ${AWESOME_OPTIONAL_INCLUDE_DIRS} ${DBUS_INCLUDE_DIRS})
|
||||
else()
|
||||
set(WITH_DBUS OFF)
|
||||
|
|
Loading…
Reference in New Issue