0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 09:47:56 +08:00

Fix precompiled

This commit is contained in:
Yann Diorcet 2017-05-17 18:50:01 +02:00
parent 6ad533bec4
commit f66c49a62b

View File

@ -703,15 +703,19 @@ endif ()
if (MSVC) if (MSVC)
# default for all sources is to use precompiled headers # default for all sources is to use precompiled headers
foreach(source ${sources}) foreach(source ${sources})
set_source_files_properties(${source} if (NOT ${source} STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}/src/precompiled.cpp")
PROPERTIES set_source_files_properties(${source}
COMPILE_FLAGS "/Yuprecompiled.hpp" PROPERTIES
) COMPILE_FLAGS "/Yuprecompiled.hpp"
OBJECT_DEPENDS precompiled.hpp
)
endif()
endforeach() endforeach()
# create precompiled header # create precompiled header
set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/src/precompiled.cpp set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/src/precompiled.cpp
PROPERTIES PROPERTIES
COMPILE_FLAGS "/Ycprecompiled.hpp" COMPILE_FLAGS "/Ycprecompiled.hpp"
OBJECT_OUTPUTS precompiled.hpp
) )
# C and C++ can not use the same precompiled header # C and C++ can not use the same precompiled header
set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/src/tweetnacl.c set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/src/tweetnacl.c