rename BUILD_uSE_PCH to FREECAD_USE_PCH to be consistent with other build options

This commit is contained in:
wmayer
2019-04-15 13:31:31 +02:00
parent 0c4d9f8b1b
commit 0521860740
7 changed files with 13 additions and 13 deletions

View File

@@ -154,11 +154,11 @@ SOURCE_GROUP("Features" FILES ${Draw_SRCS})
SOURCE_GROUP("Geometry" FILES ${Geometry_SRCS})
SOURCE_GROUP("Python" FILES ${Python_SRCS})
if(BUILD_USE_PCH)
if(FREECAD_USE_PCH)
#add_definitions(-D_PreComp_)
#GET_MSVC_PRECOMPILED_SOURCE("PreCompiled.cpp" TechDrawCPP_SRCS ${TechDraw_SRCS} ${Draw_SRCS} )
#ADD_MSVC_PRECOMPILED_HEADER(TechDraw PreCompiled.h PreCompiled.cpp TechDrawCPP_SRCS)
endif(BUILD_USE_PCH)
endif(FREECAD_USE_PCH)
add_library(TechDraw SHARED ${TechDraw_SRCS} ${Draw_SRCS} ${TechDrawAlgos_SRCS}
${Geometry_SRCS} ${Python_SRCS})