The windows makefile does not also include the headers (as the linux version does).
To include the headers it looks like the makefile needs to be updated as:
all: $(HEADERS) $(LIBRARY)
and
install::
$(RM) $(INSTDIR)/lib/$(LIBNAME).so
$(CP) $(LIBRARY:%.dll=%.lib) $(INSTDIR)/lib
$(CP) $(HEADERS) $(INSTDIR)/include/csm
Though I am not 100% sure? If those are correct, I am happy to open a PR with the changes. I do not have immediate access to a windows build env. to test.
The windows makefile does not also include the headers (as the linux version does).
To include the headers it looks like the makefile needs to be updated as:
all: $(HEADERS) $(LIBRARY)and
install:: $(RM) $(INSTDIR)/lib/$(LIBNAME).so $(CP) $(LIBRARY:%.dll=%.lib) $(INSTDIR)/lib $(CP) $(HEADERS) $(INSTDIR)/include/csmThough I am not 100% sure? If those are correct, I am happy to open a PR with the changes. I do not have immediate access to a windows build env. to test.