
https://svn.lrde.epita.fr/svn/ranch/trunk Index: ChangeLog from Nicolas Desprès <nicolas.despres@lrde.epita.fr> Fix build bug on MacOS. * lib/cxx/src/input/input.cc: New. Dummy files to avoid empty static library. * lib/cxx/src/input/Makefile.am: Add input.cc. Makefile.am | 3 ++- input.cc | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) Index: lib/cxx/src/input/input.cc --- lib/cxx/src/input/input.cc (revision 0) +++ lib/cxx/src/input/input.cc (revision 0) @@ -0,0 +1,13 @@ +#include "input/input.hh" + +namespace Ranch +{ + namespace Input + { + + } // namespace Input + +} // namespace Ranch + + + Index: lib/cxx/src/input/Makefile.am --- lib/cxx/src/input/Makefile.am (revision 4) +++ lib/cxx/src/input/Makefile.am (working copy) @@ -3,4 +3,5 @@ noinst_LTLIBRARIES = libinput.la libinput_la_SOURCES = \ input.hh \ - input.hxx + input.hxx \ + input.cc