summaryrefslogtreecommitdiff
path: root/CMake/FindFreeImage.cmake
blob: 6073916ff8e97291de04ff0e4f8072f3321d934b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# Try to find the FreeImage library and include path.
# Once done this will define
#
# FREEIMAGE_FOUND
# FREEIMAGE_INCLUDE_PATH
# FREEIMAGE_LIBRARY
# FREEIMAGE_SHAREDLIB (Win32 only)
#
# There is no default installation for FreeImage on Windows so a
# XTrackCAD specific directory tree is assumed
#

if (WIN32)
	find_path( FREEIMAGE_INCLUDE_PATH FreeImage.h
		PATHS
    $ENV{XTCEXTERNALROOT}/x86/FreeImage
		DOC "The directory where FreeImage.h resides")
	find_library( FREEIMAGE_LIBRARY
		NAMES FreeImage freeimage
		PATHS
    $ENV{XTCEXTERNALROOT}/x86/FreeImage
		DOC "The FreeImage library")
	find_file( FREEIMAGE_SHAREDLIB
		NAMES freeimage.DLL
		PATHS
    $ENV{XTCEXTERNALROOT}/x86/FreeImage
	)
else (WIN32)
	find_path( FREEIMAGE_INCLUDE_PATH FreeImage.h
		/usr/include
		/usr/local/include
		/sw/include
		/opt/local/include
		DOC "The directory where FreeImage.h resides")
	find_library( FREEIMAGE_LIBRARY
		NAMES FreeImage freeimage
		PATHS
		/usr/lib64
		/usr/lib
		/usr/local/lib64
		/usr/local/lib
		/sw/lib
		/opt/local/lib
		DOC "The FreeImage library")
endif (WIN32)

find_package_handle_standard_args( FreeImage
		DEFAULT_MSG
		FREEIMAGE_LIBRARY
		FREEIMAGE_INCLUDE_PATH
)

mark_as_advanced(
	FREEIMAGE_FOUND
	FREEIMAGE_LIBRARY
	FREEIMAGE_INCLUDE_PATH
  FREEIMAGE_SHAREDLIB)