Mercurial > hg > orthanc
view Resources/CMake/VisualStudioPrecompiledHeaders.cmake @ 3587:76b3228f99b0
Sort file lists
to make builds reproducible in spite of
nondeterministic filesystem readdir order.
See https://reproducible-builds.org/ for why this matters.
author | Bernhard M. Wiedemann <bernhard+hgcommit@lsmod.de> |
---|---|
date | Thu, 05 Dec 2019 16:21:41 +0100 |
parents | c6dab987f43a |
children |
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}_${CMAKE_BUILD_TYPE}_${CMAKE_GENERATOR_PLATFORM}.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()