mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 17:59:03 +00:00
91e6b23d3f
NMAKE-VS2012 Error LNK2011 while NMAKE-VS2010 does not complain we need to link the pch.obj file see http://msdn.microsoft.com/en-us/library/3ay26wa2(v=vs.110).aspx ** PCH Support for Ninja Ninja need to add property OBJECT_DEPENDS for using PCH OBJECT_OUTPUTS for create PCH see http://public.kitware.com/pipermail/cmake-developers/2012-March/003653.html
38 lines
1 KiB
CMake
38 lines
1 KiB
CMake
# - Find DirectInput
|
|
# Find the DirectSound includes and libraries
|
|
#
|
|
# DINPUT_INCLUDE_DIR - where to find dinput.h
|
|
# DINPUT_LIBRARIES - List of libraries when using DirectInput.
|
|
# DINPUT_FOUND - True if DirectInput found.
|
|
|
|
if(DINPUT_INCLUDE_DIR)
|
|
# Already in cache, be silent
|
|
set(DINPUT_FIND_QUIETLY TRUE)
|
|
endif(DINPUT_INCLUDE_DIR)
|
|
|
|
find_path(DINPUT_INCLUDE_DIR dinput.h
|
|
"$ENV{DXSDK_DIR}"
|
|
"$ENV{DXSDK_DIR}/Include"
|
|
)
|
|
|
|
find_library(DINPUT_LIBRARY
|
|
NAMES dinput dinput8
|
|
PATHS
|
|
"$ENV{DXSDK_DIR}"
|
|
"$ENV{DXSDK_DIR}/Lib"
|
|
"$ENV{DXSDK_DIR}/Lib/x86"
|
|
)
|
|
|
|
# Handle the QUIETLY and REQUIRED arguments and set DINPUT_FOUND to TRUE if
|
|
# all listed variables are TRUE.
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(DINPUT DEFAULT_MSG
|
|
DINPUT_INCLUDE_DIR DINPUT_LIBRARY)
|
|
|
|
if(DINPUT_FOUND)
|
|
set(DINPUT_LIBRARIES ${DINPUT_LIBRARY})
|
|
else(DINPUT_FOUND)
|
|
set(DINPUT_LIBRARIES)
|
|
endif(DINPUT_FOUND)
|
|
|
|
mark_as_advanced(DINPUT_INCLUDE_DIR DINPUT_LIBRARY)
|