cbe57bef04
pqueue.h was getting installed when it shouldn't. pkgconfig files were not getting installed or generated.
9 lines
279 B
CMake
9 lines
279 B
CMake
if(ENABLE_LIBRESSL_INSTALL)
|
|
install(DIRECTORY .
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
PATTERN "CMakeLists.txt" EXCLUDE
|
|
PATTERN "compat" EXCLUDE
|
|
PATTERN "pqueue.h" EXCLUDE
|
|
PATTERN "Makefile*" EXCLUDE)
|
|
endif(ENABLE_LIBRESSL_INSTALL)
|