aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/xaudio2redist/xaudio2redist-config.cmake.in
blob: 4829ec4947f33ddc9553b3d6b79e84c1ecc020e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
get_filename_component(_xaudio2_root "${CMAKE_CURRENT_LIST_DIR}" PATH)
get_filename_component(_xaudio2_root "${_xaudio2_root}" PATH)

set(_xaudio2_root_lib "${_xaudio2_root}/lib/xaudio2_9redist.lib")
if (EXISTS "${_xaudio2_root_lib}")

   add_library(Microsoft::XAudio2Redist SHARED IMPORTED)
   set_target_properties(Microsoft::XAudio2Redist PROPERTIES
      IMPORTED_LOCATION_RELEASE            "${_xaudio2_root}/bin/xaudio2_9redist.dll"
      IMPORTED_IMPLIB_RELEASE              "${_xaudio2_root_lib}"
      IMPORTED_LOCATION_DEBUG              "${_xaudio2_root}/debug/bin/xaudio2_9redist.dll"
      IMPORTED_IMPLIB_DEBUG                "${_xaudio2_root}/debug/lib/xaudio2_9redist.lib"
      INTERFACE_INCLUDE_DIRECTORIES        "${_xaudio2_root}/include/xaudio2redist"
      IMPORTED_CONFIGURATIONS              "Debug;Release"
      IMPORTED_LINK_INTERFACE_LANGUAGES    "C")

   add_library(Microsoft::XApoBase STATIC IMPORTED)
   set_target_properties(Microsoft::XApoBase PROPERTIES
      IMPORTED_LOCATION_RELEASE            "${_xaudio2_root}/lib/xapobaseredist@lib_suffix@.lib"
      IMPORTED_LOCATION_DEBUG              "${_xaudio2_root}/debug/lib/xapobaseredist@lib_suffix@.lib"
      INTERFACE_INCLUDE_DIRECTORIES        "${_xaudio2_root}/include/xaudio2redist"
      IMPORTED_CONFIGURATIONS              "Debug;Release")

    set(xaudio2redist_FOUND TRUE)

else()

    set(xaudio2redist_FOUND FALSE)

endif()

unset(_xaudio2_root_lib)
unset(_xaudio2_root)