freesurfacemodules / FreeSurface

GNU General Public License v3.0
15 stars 1 forks source link

Header being removed in build process #1

Closed cschol closed 3 years ago

cschol commented 3 years ago

During the official Rack build process, the dep directory will be cleaned up before executing make dep. This means your plf_nanotimer.hpp will be removed before building and the build eventually fails.

I can recommend a few options:

  1. Move plf_nanotimer to a directory under src, for example src/dep.
  2. Add the plf_nanotimer repository as a git submodule. The build process will execute git submodule update --init --recursive before building.

Let me know if you have any questions.

cschol commented 3 years ago

Works. Thank you.