问题作为标题。
Netbeans 不提供构建前或构建后步骤,默认情况下也不提供此设置。有什么方便的方法可以使这项工作或者我可以编辑一些配置吗?我认为当您添加文件等时,makefile 会重新生成。
我严重依赖像 boost 或 glm 这样的仅标头库,而我的生产力取决于预编译的标头,因为它使代码编译得更快。
我使用 mingw 作为 Windows 上的编译器套件和语言 C++。
编辑
第一个建议后我修改的makefile:
# Environment
MKDIR=mkdir
CP=cp
CCADMIN=CCadmin
# build
build: .build-post
.build-pre:
# Add your pre 'build' code here...
NightLight.hpp.gch: Nightlight.hpp
$(COMPILE.cc) $(CXXFLAGS) -g NightLight.hpp
.build-post: .build-impl
# Add your post 'build' code here...
# clean
clean: .clean-post
.clean-pre:
# Add your pre 'clean' code here...
.clean-post: .clean-impl
# Add your post 'clean' code here...
$(RM) pch.h.gch