mirror of
https://github.com/corda/corda.git
synced 2025-01-17 02:09:50 +00:00
find headers regardless of directory layout in vm-depends definition
This commit is contained in:
parent
41d84f7d5a
commit
fd047bd6e9
5
makefile
5
makefile
@ -939,7 +939,8 @@ generated-code = \
|
||||
$(build)/type-name-initializations.cpp \
|
||||
$(build)/type-maps.cpp
|
||||
|
||||
vm-depends := $(generated-code) $(wildcard $(src)/*.h) $(wildcard $(src)/codegen/*.h) $(wildcard $(src)/codegen/compiler/*.h)
|
||||
vm-depends := $(generated-code) \
|
||||
$(shell find src include -name '*.h' -or -name '*.inc.cpp')
|
||||
|
||||
vm-sources = \
|
||||
$(src)/$(system).cpp \
|
||||
@ -1019,7 +1020,7 @@ heapwalk-sources = $(src)/heapwalk.cpp
|
||||
heapwalk-objects = \
|
||||
$(call cpp-objects,$(heapwalk-sources),$(src),$(build))
|
||||
|
||||
unittest-objects = $(call cpp-objects,$(unittest-sources),$(unittest),$(build)/unittest/)
|
||||
unittest-objects = $(call cpp-objects,$(unittest-sources),$(unittest),$(build)/unittest)
|
||||
|
||||
ifeq ($(heapdump),true)
|
||||
vm-sources += $(src)/heapdump.cpp
|
||||
|
Loading…
Reference in New Issue
Block a user