Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem/cmake/FindDirectX.cmake @ 2360

Last change on this file since 2360 was 2360, checked in by landauf, 15 years ago

some small adjustments for mingw but still a problem with finding the lua library when building the toluabind files.

  • Property svn:eol-style set to native
File size: 760 bytes
RevLine 
[1505]1IF(WIN32)
2  # - Test for DirectX
3  # Once loaded this will define
4  #   DirectX_FOUND        - system has DirectX
5  #   DirectX_INCLUDE_DIR  - include directory for DirectX
6  #   DirectX_LIB_DIR      - lib directory for DirectX
[1776]7  #
8  # Several changes and additions by Fabian 'x3n' Landau
9  #                 > www.orxonox.net <
[1505]10
[2318]11  FIND_PATH(DirectX_INCLUDE_DIR dinput.h
12    PATHS
13    $ENV{DXSDK_DIR}
[2360]14    PATH_SUFFIXES include Include
[1505]15  )
16
[2318]17  FIND_PATH(DirectX_LIB_DIR dinput8.lib
[2360]18    PATHS
[2318]19    $ENV{DXSDK_DIR}
[2360]20    PATH_SUFFIXES lib Lib lib/x86 Lib/x86
[1505]21  )
22
[2318]23  INCLUDE(FindPackageHandleStandardArgs)
24  FIND_PACKAGE_HANDLE_STANDARD_ARGS(DirectX DEFAULT_MSG DirectX_INCLUDE_DIR DirectX_LIB_DIR)
[1505]25
26ENDIF(WIN32)
[2318]27
28MARK_AS_ADVANCED(DirectX_INCLUDE_DIR DirectX_LIB_DIR)
Note: See TracBrowser for help on using the repository browser.