diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2017-03-22 16:06:19 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2017-03-22 16:06:19 +0000 |
commit | 251878a7a16129fa4a6531abcb3be1a1c7402bc5 (patch) | |
tree | d0b0773a9e58a8fc49289eed3da8558dd87e1e02 /thirdparty | |
parent | 8f55cb5f966edecfb9f7137e38eb3872a0488ac0 (diff) |
cmake: Fix D3D11 include dir on dxerr.
Diffstat (limited to 'thirdparty')
-rw-r--r-- | thirdparty/dxerr/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/dxerr/CMakeLists.txt b/thirdparty/dxerr/CMakeLists.txt index 26802e66..95d286a7 100644 --- a/thirdparty/dxerr/CMakeLists.txt +++ b/thirdparty/dxerr/CMakeLists.txt @@ -2,7 +2,7 @@ add_definitions (-DHAVE_DDRAW) add_definitions (-DHAVE_D3D9) if (DirectX_D3D11_3_INCLUDE_FOUND) - include_directories (BEFORE SYSTEM DirectX_D3D11_3_INCLUDE_DIR) + include_directories (BEFORE SYSTEM ${DirectX_D3D11_3_INCLUDE_DIR}) add_definitions (-DHAVE_D3D10_1) add_definitions (-DHAVE_D3D11_1) endif () |