aseprite/cmake/FindDDraw.cmake
David Capello 87d2d5595f Move link flags and other cmake configuration from Allegro's CMakeLists.txt to the main CMakeLists.txt.
Remove all the "modules" stuff from Allegro's CMakeLists.txt
2010-10-16 17:02:12 -03:00

42 lines
1.1 KiB
CMake

# - Find DirectInput
# Find the DirectInput includes and libraries
#
# DDRAW_INCLUDE_DIR - where to find ddraw.h
# DDRAW_LIBRARIES - List of libraries when using ddraw.
# DDRAW_FOUND - True if ddraw found.
if(DDRAW_INCLUDE_DIR)
# Already in cache, be silent
set(DDRAW_FIND_QUIETLY TRUE)
endif(DDRAW_INCLUDE_DIR)
# Makes my life easier.
if(MSVC)
set(HINT_INCLUDE "C:/Program Files/Microsoft DirectX SDK (August 2008)/Include")
set(HINT_LIB "C:/Program Files/Microsoft DirectX SDK (August 2008)/Lib")
endif(MSVC)
find_path(DDRAW_INCLUDE_DIR ddraw.h
PATH ${HINT_INCLUDE}
)
find_library(DDRAW_LIBRARY
NAMES ddraw
PATHS ${HINT_LIB}
PATH_SUFFIXES x86 x64
)
# Handle the QUIETLY and REQUIRED arguments and set DDRAW_FOUND to TRUE if
# all listed variables are TRUE.
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(DDRAW DEFAULT_MSG
DDRAW_INCLUDE_DIR DDRAW_LIBRARY)
if(DDRAW_FOUND)
set(DDRAW_LIBRARIES ${DDRAW_LIBRARY})
else(DDRAW_FOUND)
set(DDRAW_LIBRARIES)
endif(DDRAW_FOUND)
mark_as_advanced(DDRAW_INCLUDE_DIR DDRAW_LIBRARY)