89429885a0
* new CMake option PKG_CONFIG_RELOCATABLE (default ON) allows generating traditional or relocatable pc files
7 lines
233 B
CMake
7 lines
233 B
CMake
option(PKG_CONFIG_RELOCATABLE "Generate relocatable pkg-config files" ON)
|
|
if (PKG_CONFIG_RELOCATABLE)
|
|
set(PKG_CONFIG_INSTALL_PREFIX "\${pcfiledir}/../..")
|
|
else()
|
|
set(PKG_CONFIG_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
|
|
endif()
|