mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
11 lines
429 B
Makefile
11 lines
429 B
Makefile
GLOBAL_CXXFLAGS += -Wno-deprecated-declarations -Werror=switch
|
|
# Allow switch-enum to be overridden for files that do not support it, usually because of dependency headers.
|
|
ERROR_SWITCH_ENUM = -Werror=switch-enum
|
|
|
|
$(foreach i, config.h $(wildcard src/lib*/*.hh) $(wildcard src/lib*/*.h), \
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix, 0644)))
|
|
|
|
$(GCH): src/libutil/util.hh config.h
|
|
|
|
GCH_CXXFLAGS = $(INCLUDE_libutil)
|