File: PrecompiledHeader.cmake

package info (click to toggle)
assimp 3.3.1~dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,144 kB
  • sloc: cpp: 116,933; ansic: 7,063; java: 2,037; python: 1,968; pascal: 341; xml: 146; sh: 126; objc: 122; makefile: 47
file content (25 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download | duplicates (8)
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
MACRO(ADD_MSVC_PRECOMPILED_HEADER PrecompiledHeader PrecompiledSource SourcesVar)
  IF(MSVC)
    GET_FILENAME_COMPONENT(PrecompiledBasename ${PrecompiledHeader} NAME_WE)
    SET(PrecompiledBinary "${CMAKE_CFG_INTDIR}/${PrecompiledBasename}.pch")
    SET(Sources ${${SourcesVar}})

    SET_SOURCE_FILES_PROPERTIES(${PrecompiledSource}
      PROPERTIES COMPILE_FLAGS "/Yc\"${PrecompiledHeader}\" /Fp\"${PrecompiledBinary}\""
      OBJECT_OUTPUTS "${PrecompiledBinary}")

    # Do not consider .c files
    foreach(fname ${Sources}) 
      GET_FILENAME_COMPONENT(fext ${fname} EXT)
      if(fext STREQUAL ".cpp")
	SET_SOURCE_FILES_PROPERTIES(${fname}
	  PROPERTIES COMPILE_FLAGS "/Yu\"${PrecompiledBinary}\" /FI\"${PrecompiledBinary}\" /Fp\"${PrecompiledBinary}\""
          OBJECT_DEPENDS "${PrecompiledBinary}")     
      endif(fext STREQUAL ".cpp")
    endforeach(fname) 

  ENDIF(MSVC)
  # Add precompiled header to SourcesVar
  LIST(APPEND ${SourcesVar} ${PrecompiledSource})

ENDMACRO(ADD_MSVC_PRECOMPILED_HEADER)