mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
Do it so that we can hardcode these variables to point to base's liblzma, otherwise the liblzma.so installed by archivers/lzmalib will be chosen if present and the configuration process will fail. This is done only so that `make configure' works, as liblzma is only used if we build CMake's bundled libarchive. MFH: 2015Q2
16 lines
885 B
CMake
16 lines
885 B
CMake
# Disable CMake's tests while building. We are not interested in them when
|
|
# building packages/ports, and it may create problems if part of some
|
|
# dependencies are installed (for example, devel/qmake4 is installed, but
|
|
# devel/qt4-corelib is not).
|
|
# See https://mail.kde.org/pipermail/kde-freebsd/2013-July/015703.html
|
|
set(BUILD_TESTING OFF CACHE BOOL "Build the testing tree.")
|
|
|
|
# Force CMake to look for base's liblzma, otherwise the configuration process
|
|
# will fail if archivers/lzmalib is installed, as CMake will try to use its
|
|
# liblzma.so.
|
|
# Note that this is necessary only for `make configure' to work, as liblzma is
|
|
# only ever used if CMake's bundled libarchive is being used.
|
|
set(LIBLZMA_INCLUDE_DIR "/usr/include" CACHE PATH
|
|
"Directory where LibLZMA headers are located.")
|
|
set(LIBLZMA_LIBRARY "/usr/lib/liblzma.so" CACHE PATH
|
|
"LibLZMA library to link against..")
|