view Resources/CMake/VisualStudioPrecompiledHeaders.cmake @ 2273:1ca3c2065059 Orthanc-1.1.0

Merged in Barnerd/orthanc/Barnerd/fix-build-with-libressl-completely-re-1488028252315 (pull request #4) Fix build with LibreSSL
author Sébastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 Feb 2017 08:29:52 +0000
parents c9e0e709485b
children 233d6eeef799
line wrap: on
line source

macro(ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS PrecompiledHeaders PrecompiledSource Sources)
  get_filename_component(PrecompiledBasename ${PrecompiledHeaders} NAME_WE)
  set(PrecompiledBinary "${PrecompiledBasename}_$(ConfigurationName).pch")

  set_source_files_properties(${PrecompiledSource}
    PROPERTIES COMPILE_FLAGS "/Yc\"${PrecompiledHeaders}\" /Fp\"${PrecompiledBinary}\""
    OBJECT_OUTPUTS "${PrecompiledBinary}")

  set_source_files_properties(${${Sources}}
    PROPERTIES COMPILE_FLAGS "/Yu\"${PrecompiledHeaders}\" /FI\"${PrecompiledHeaders}\" /Fp\"${PrecompiledBinary}\""
    OBJECT_DEPENDS "${PrecompiledBinary}")

  list(APPEND ${Sources} ${PrecompiledSource})
endmacro()