edawson / gfakluge

A C++ library and utilities for manipulating the Graphical Fragment Assembly format.
http://edawson.github.io/gfakluge/
MIT License
51 stars 20 forks source link

can't build #72

Open 8banzhuan opened 1 year ago

8banzhuan commented 1 year ago

Hello, when I git the code locally and execute make, the following error occurs make: *** No rule to make target 'src/tinyFA/pliib/pliib.hpp', needed by 'build/main.o'. Stop. Looking forward for your response, thank you

edawson commented 1 year ago

Hi,

This usually happens because the submodules are not initialized. When you cloned the repo, did you use the --recursive flag?

git clone --recursive https://github.com/edawson/gfakluge.git

If you've already cloned the repo, you can run the following from inside the repo:

git submodule update --init --recursive