package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
471 B
17 lines
471 B
@PACKAGE_INIT@ |
|
|
|
# Usage: |
|
# |
|
# find_pacakge(@PACKAGE_NAME@) |
|
# |
|
# add_executable(foo) |
|
# target_link_libraries(foo @PACKAGE_NAMESPACE@base64) |
|
|
|
set_and_check(@PACKAGE_NAME@_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@") |
|
set_and_check(@PACKAGE_NAME@_LIBRARY_DIRS "@PACKAGE_CMAKE_INSTALL_LIBDIR@") |
|
|
|
set(@PACKAGE_NAME@_LIBRARIES @PACKAGE_NAMESPACE@base64) |
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/@PACKAGE_NAME@-targets.cmake) |
|
|
|
check_required_components(@PACKAGE_NAME@)
|
|
|