We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CMAKE_INSTALL_PREFIX
The ASAP_xxx variables should be set using the install prefix:
# Install into local directory set(ASAP_INSTALL_ROOT "${CMAKE_INSTALL_PREFIX}") # ./ set(ASAP_INSTALL_LIB "${ASAP_INSTALL_ROOT}/lib") # ./lib set(ASAP_INSTALL_SHARED "${ASAP_INSTALL_LIB}") # ./lib set(ASAP_INSTALL_CMAKE "${ASAP_INSTALL_ROOT}/share/cmake/${META_PROJECT_NAME}") # ./share/cmake/<project> set(ASAP_INSTALL_PKGCONFIG "${ASAP_INSTALL_ROOT}/share/pkgconfig") # ./share/pkgconfig set(ASAP_INSTALL_EXAMPLES "${ASAP_INSTALL_ROOT}") # ./ set(ASAP_INSTALL_DATA "${ASAP_INSTALL_ROOT}") # ./data set(ASAP_INSTALL_BIN "${ASAP_INSTALL_ROOT}/bin") # ./bin set(ASAP_INSTALL_INCLUDE "${ASAP_INSTALL_ROOT}/include") # ./include set(ASAP_INSTALL_DOC "${ASAP_INSTALL_ROOT}/doc") # ./doc set(ASAP_INSTALL_SHORTCUTS "${ASAP_INSTALL_ROOT}/misc") # ./misc set(ASAP_INSTALL_ICONS "${ASAP_INSTALL_ROOT}/misc") # ./misc set(ASAP_INSTALL_INIT "${ASAP_INSTALL_ROOT}/misc") # ./misc
The text was updated successfully, but these errors were encountered:
fix: #20 use CMAKE_INSTALL_PREFIX to set variables
2fffd96
2e1f1d4
No branches or pull requests
The ASAP_xxx variables should be set using the install prefix:
The text was updated successfully, but these errors were encountered: