Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMakeLists: add missing include dirs #2202

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,12 @@ include_directories(
${XMLSEC_INCLUDE_DIRS}
${OPENSSL_INCLUDE_DIR}
${PCRE2_INCLUDE_DIRS}
${LIBXSLT_INCLUDE_DIR}
${RPM_INCLUDE_DIRS}
${GCRYPT_INCLUDE_DIRS}
${BLKID_INCLUDE_DIRS}
${POPT_INCLUDE_DIRS}
${SELINUX_INCLUDE_DIRS}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It probably needs to be wrapped by a condition so that it doesn't add include directories if the libraries aren't found. See the output of the CI on Windows.

)

# Honor visibility properties for all target types
Expand Down
Loading