Mercurial > hg > orthanc
view Resources/CMake/VisualStudioPrecompiledHeaders.cmake @ 3128:972cc98959a3 db-changes
fix build of civetweb for Visual Studio 2008 and LSB
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Jan 2019 12:14:30 +0100 |
parents | 233d6eeef799 |
children | c6dab987f43a |
line wrap: on
line source
macro(ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS PrecompiledHeaders PrecompiledSource Sources Target) 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}") set(${Target} ${PrecompiledSource}) endmacro()