VoxelConfig.cmake 672 B

12345678910111213141516171819
  1. # - Config file for the FooBar package
  2. # It defines the following variables
  3. # VOXEL_INCLUDE_DIRS - include directories for FooBar
  4. # VOXEL_LIBRARIES - libraries to link against
  5. # Compute paths
  6. get_filename_component(VOXEL_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
  7. set(VOXEL_INCLUDE_DIRS ${VOXEL_CMAKE_DIR}/../../../include/voxel-0.6.8 /libusb-1.0;Util/)
  8. set(VOXEL_ABI_VERSION 34)
  9. # Our library dependencies (contains definitions for IMPORTED targets)
  10. if(NOT TARGET Voxel::voxel AND NOT Voxel_BINARY_DIR)
  11. include("${VOXEL_CMAKE_DIR}/VoxelTargets.cmake")
  12. endif()
  13. # These are IMPORTED targets created by FooBarTargets.cmake
  14. set(VOXEL_LIBRARIES Voxel::voxel)