mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
cmake: Fix incorrect target for interface include directories
This commit is contained in:
parent
edebfa6a5f
commit
a0fc00ed64
1 changed files with 2 additions and 2 deletions
|
@ -900,10 +900,10 @@ if(REQUIRE_NVIDIA_VFX_SDK AND D_PLATFORM_WINDOWS)
|
||||||
|
|
||||||
if(NOT TARGET NVIDIA::VFX)
|
if(NOT TARGET NVIDIA::VFX)
|
||||||
add_library(NVIDIA::VFX IMPORTED INTERFACE)
|
add_library(NVIDIA::VFX IMPORTED INTERFACE)
|
||||||
target_include_directories(nvARProxy
|
target_include_directories(NVIDIA::VFX
|
||||||
INTERFACE
|
INTERFACE
|
||||||
"${PROJECT_SOURCE_DIR}/third-party/nvidia-maxine-vfx-sdk/nvvfx/include/"
|
"${PROJECT_SOURCE_DIR}/third-party/nvidia-maxine-vfx-sdk/nvvfx/include/"
|
||||||
"${PROJECT_SOURCE_DIR}/third-party/nvidia-maxine-vfx-sdk/nvvfx/source/"
|
"${PROJECT_SOURCE_DIR}/third-party/nvidia-maxine-vfx-sdk/nvvfx/src/"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue