当我在Visual Studio中使用.exe输出构建我的C ++项目时,它会创建我项目的.lib和.exp文件,这需要花费很多时间。我在stdafx.h(预编译头)的开头添加了_DO_NOT_EXPORT条件,试图跳过此步骤,但它仍然在每次构建结束时创建.lib和.exp文件。我是否在正确的位置添加了条件?
答案 0 :(得分:0)
对于它的价值,你可以禁用块
#if defined(BOOST_HAS_DECLSPEC) && !defined(__COMO__)
# if defined(__BORLANDC__)
# define BOOST_DLLEXPORT __export
# else
# define BOOST_DLLEXPORT __declspec(dllexport)
# endif
#elif ! defined(_WIN32) && ! defined(_WIN64)
# if defined(__MWERKS__)
# define BOOST_DLLEXPORT __declspec(dllexport)
# elif defined(__GNUC__) && (__GNUC__ >= 3)
# define BOOST_USED __attribute__ ((used))
# elif defined(__INTEL_COMPILER) && (BOOST_INTEL_CXX_VERSION >= 800)
# define BOOST_USED __attribute__ ((used))
# endif
#endif
在Boost的serialization/force_include.hpp
中。