Statistics
| Revision:

root / trunk / extensions / ext3Dgui / buildman / plugins-data / depman / CMakeModules / FindINTTYPES.cmake @ 26254

History | View | Annotate | Download (300 Bytes)

1
# INTTYPES - inttypes.h for Windows platform
2
#
3
# INTTYPES_FOUND
4
# INTTYPES_INCLUDE_DIR
5

    
6
IF(WIN32)
7

    
8
	FIND_PATH(INTTYPES_INCLUDE_DIR inttypes.h ${DEPMAN_PATH}/include)
9
	MARK_AS_ADVANCED(INTTYPES_INCLUDE_DIR)
10
	IF(INTTYPES_INCLUDE_DIR)
11
		SET(INTTYPES_FOUND 1)
12
	ENDIF(INTTYPES_INCLUDE_DIR)
13

    
14
ENDIF(WIN32)
15