| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #
- # Copyright (c) 2008-2013 the Urho3D project.
- #
- # Permission is hereby granted, free of charge, to any person obtaining a copy
- # of this software and associated documentation files (the "Software"), to deal
- # in the Software without restriction, including without limitation the rights
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- # copies of the Software, and to permit persons to whom the Software is
- # furnished to do so, subject to the following conditions:
- #
- # The above copyright notice and this permission notice shall be included in
- # all copies or substantial portions of the Software.
- #
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- # THE SOFTWARE.
- #
- # Find Microsoft DirectX installation
- # The search paths are based on realXtend Tundra CMake build system (https://github.com/realXtend/naali)
- #
- # DIRECT3D_FOUND
- # DIRECT3D_INCLUDE_DIRS
- # DIRECT3D_LIBRARIES
- # DIRECT3D_COMPILER_LIBRARIES
- #
- if (NOT WIN32)
- return ()
- endif ()
- if (DIRECT3D_FOUND)
- return ()
- endif ()
- set (DIRECTX_INC_SEARCH_PATH
- "$ENV{DIRECTX_ROOT}/Include"
- "$ENV{DXSDK_DIR}/Include"
- "C:/Program Files (x86)/Microsoft DirectX SDK*/Include"
- "C:/Program Files/Microsoft DirectX SDK*/Include")
- find_path (DIRECT3D_INCLUDE_DIRS d3dx9.h ${DIRECTX_INC_SEARCH_PATH})
- if (CMAKE_CL_64)
- set (DIRECTX_LIB_SEARCH_PATH
- "$ENV{DIRECTX_ROOT}/Lib/x64"
- "$ENV{DXSDK_DIR}/Lib/x64"
- "C:/Program Files (x86)/Microsoft DirectX SDK*/Lib/x64"
- "C:/Program Files/Microsoft DirectX SDK*/Lib/x64")
- else ()
- set (DIRECTX_LIB_SEARCH_PATH
- "$ENV{DIRECTX_ROOT}/Lib"
- "$ENV{DIRECTX_ROOT}/Lib/x86"
- "$ENV{DXSDK_DIR}/Lib"
- "$ENV{DXSDK_DIR}/Lib/x86"
- "C:/Program Files (x86)/Microsoft DirectX SDK*/Lib"
- "C:/Program Files (x86)/Microsoft DirectX SDK*/Lib/x86"
- "C:/Program Files/Microsoft DirectX SDK*/Lib"
- "C:/Program Files/Microsoft DirectX SDK*/Lib/x86")
- endif ()
- find_library (DIRECT3D_LIBRARIES d3d9 ${DIRECTX_LIB_SEARCH_PATH})
- find_library (DIRECT3D_COMPILER_LIBRARIES d3dcompiler ${DIRECTX_LIB_SEARCH_PATH})
- if (DIRECT3D_INCLUDE_DIRS AND DIRECT3D_LIBRARIES AND DIRECT3D_COMPILER_LIBRARIES)
- set (DIRECT3D_FOUND 1)
- endif ()
- if (DIRECT3D_FOUND)
- include (FindPackageMessage)
- FIND_PACKAGE_MESSAGE (Direct3D "Found DirectX SDK: ${DIRECT3D_LIBRARIES} ${DIRECT3D_INCLUDE_DIRS}" "[${DIRECT3D_LIBRARIES}][${DIRECT3D_INCLUDE_DIRS}]")
- else ()
- message (STATUS "DirectX SDK not found. This is not fatal if a recent Windows SDK is installed")
- # Set non-absolute fallback library names and assume they are found in default library directories
- set (DIRECT3D_LIBRARIES d3d9)
- set (DIRECT3D_COMPILER_LIBRARIES d3dcompiler)
- endif ()
- mark_as_advanced (DIRECT3D_INCLUDE_DIRS DIRECT3D_LIBRARIES DIRECT3D_COMPILER_LIBRARIES)
|