1 | # Find OIS includes and library |
---|
2 | # |
---|
3 | # This module defines |
---|
4 | # OIS_INCLUDE_DIR |
---|
5 | # OIS_LIBRARIES, the libraries to link against to use OIS. |
---|
6 | # OIS_LIB_DIR, the location of the libraries |
---|
7 | # OIS_FOUND, If false, do not try to use OIS |
---|
8 | # |
---|
9 | # Created by Matt Williams to find OGRE libraries |
---|
10 | # Copyright © 2007, Matt Williams |
---|
11 | # |
---|
12 | # Modified by Nicolas Schlumberger to find OIS libraries |
---|
13 | # and make it run on the Tardis-Infrastucture of the ETH Zurich |
---|
14 | # Copyright 2007, Nicolas Schlumberger |
---|
15 | # |
---|
16 | # Redistribution and use is allowed according to the terms of the BSD license. |
---|
17 | |
---|
18 | IF (OIS_LIBRARIES AND OIS_INCLUDE_DIR) |
---|
19 | SET(OIS_FIND_QUIETLY TRUE) # Already in cache, be silent |
---|
20 | ENDIF (OIS_LIBRARIES AND OIS_INCLUDE_DIR) |
---|
21 | |
---|
22 | IF (WIN32) #Windows |
---|
23 | MESSAGE(STATUS "Looking for OIS") |
---|
24 | SET(OIS_INCLUDE_DIR ../libs/ogre/Dependencies/include) |
---|
25 | SET(OIS_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../libs/ogre/Samples/Common/bin/Release) |
---|
26 | SET(OIS_LIBRARIES debug OIS_d optimized OIS) |
---|
27 | ELSE (WIN32) #Unix |
---|
28 | FIND_PACKAGE(PkgConfig) |
---|
29 | PKG_SEARCH_MODULE(OIS OIS /usr/pack/ois-1.0-sd/i686-debian-linux3.1/lib/pkgconfig/OIS.pc) # tardis specific hack |
---|
30 | SET(OIS_INCLUDE_DIR ${OIS_INCLUDE_DIRS}) |
---|
31 | SET(OIS_LIB_DIR ${OIS_LIBDIR}) |
---|
32 | SET(OIS_LIBRARIES ${OIS_LIBRARIES} CACHE STRING "") |
---|
33 | ENDIF (WIN32) |
---|
34 | |
---|
35 | #Do some preparation |
---|
36 | SEPARATE_ARGUMENTS(OIS_INCLUDE_DIR) |
---|
37 | SEPARATE_ARGUMENTS(OIS_LIBRARIES) |
---|
38 | |
---|
39 | SET(OIS_INCLUDE_DIR ${OIS_INCLUDE_DIR} CACHE PATH "") |
---|
40 | SET(OIS_LIBRARIES ${OIS_LIBRARIES} CACHE STRING "") |
---|
41 | SET(OIS_LIB_DIR ${OIS_LIB_DIR} CACHE PATH "") |
---|
42 | |
---|
43 | IF (OIS_INCLUDE_DIR AND OIS_LIBRARIES) |
---|
44 | SET(OIS_FOUND TRUE) |
---|
45 | ENDIF (OIS_INCLUDE_DIR AND OIS_LIBRARIES) |
---|
46 | |
---|
47 | IF (OIS_FOUND) |
---|
48 | IF (NOT OIS_FIND_QUIETLY) |
---|
49 | MESSAGE(STATUS " libraries : ${OIS_LIBRARIES} from ${OIS_LIB_DIR}") |
---|
50 | MESSAGE(STATUS " includes : ${OIS_INCLUDE_DIR}") |
---|
51 | ENDIF (NOT OIS_FIND_QUIETLY) |
---|
52 | ELSE (OIS_FOUND) |
---|
53 | IF (OIS_FIND_REQUIRED) |
---|
54 | MESSAGE(FATAL_ERROR "Could not find OIS") |
---|
55 | ENDIF (OIS_FIND_REQUIRED) |
---|
56 | ENDIF (OIS_FOUND) |
---|