Michael Hansen
14 years ago
19 changed files with 156 additions and 40 deletions
@ -0,0 +1,15 @@
|
||||
option(Bink_SDK_AVAILABLE "Do we have the Bink SDK?" OFF) |
||||
|
||||
if(Bink_SDK_AVAILABLE) |
||||
add_definitions(-DBINK_SDK_AVAILABLE) |
||||
endif(Bink_SDK_AVAILABLE) |
||||
|
||||
find_path(Bink_INCLUDE_DIR bink.h |
||||
C:/BinkW32 |
||||
) |
||||
|
||||
find_library(Bink_LIBRARY NAMES binkw32 |
||||
PATHS C:/BinkW32 |
||||
) |
||||
|
||||
set(Bink_LIBRARIES ${Bink_LIBRARY}) |
@ -0,0 +1,77 @@
|
||||
option(DirectX_OLD_SDK "Is this an old (November 2008) version of the SDK?" OFF) |
||||
|
||||
if (DirectX_OLD_SDK) |
||||
add_definitions(-DDX_OLD_SDK) |
||||
endif(DirectX_OLD_SDK) |
||||
|
||||
|
||||
if(DirectX_INCLUDE_DIR AND DirectX_LIBRARY) |
||||
set(DirectX_FIND_QUIETLY TRUE) |
||||
endif() |
||||
|
||||
|
||||
find_path(DirectX_INCLUDE_DIR d3dx9.h |
||||
$ENV{DXSDK_DIR}/Include |
||||
) |
||||
|
||||
find_library(DirectX_d3d9 NAMES d3d9 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
|
||||
find_library(DirectX_d3dx9 NAMES d3dx9 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
|
||||
find_library(DirectX_dinput8 NAMES dinput8 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
|
||||
find_library(DirectX_dsound NAMES dsound |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
|
||||
find_library(DirectX_dxguid NAMES dxguid |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
|
||||
if (DirectX_OLD_SDK) |
||||
find_library(DirectX_dxerr NAMES dxerr9 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
else() |
||||
find_library(DirectX_dxerr NAMES DxErr |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x86 |
||||
PATHS $ENV{DXSDK_DIR}/Lib/x64 |
||||
) |
||||
endif(DirectX_OLD_SDK) |
||||
|
||||
set(DirectX_LIBRARIES |
||||
${DirectX_d3d9} |
||||
${DirectX_d3dx9} |
||||
${DirectX_dinput8} |
||||
${DirectX_dsound} |
||||
${DirectX_dxguid} |
||||
${DirectX_dxerr} |
||||
) |
||||
|
||||
|
||||
if(DirectX_INCLUDE_DIR AND DirectX_d3d9 AND DirectX_d3dx9 AND DirectX_dinput8 |
||||
AND DirectX_dsound AND DirectX_dxguid AND DirectX_dxerr) |
||||
set(DirectX_FOUND TRUE) |
||||
endif() |
||||
|
||||
if (DirectX_FOUND) |
||||
if(NOT DirectX_FIND_QUIETLY) |
||||
message(STATUS "Found DirectX SDK: ${DirectX_INCLUDE_DIR}") |
||||
endif() |
||||
else() |
||||
if(DirectX_FIND_REQUIRED) |
||||
message(FATAL_ERROR "Could not find DirectX SDK") |
||||
endif() |
||||
endif() |
Loading…
Reference in new issue