stingergraph / stinger

The STINGER in-memory graph store and dynamic graph analysis platform. Millions to billions of vertices and edges at thousands to millions of updates per second.
http://www.stingergraph.com
Other
210 stars 67 forks source link

Generate stinger_net headers before stinger_alg. #237

Closed ehein6 closed 7 years ago

ehein6 commented 7 years ago

stinger_alg does not need to link with stinger_net, but it does include some headers from there. Commit b7b821a removed stinger_net as a link dependency. An unintended consequence of this change combined with how we generate headers and how CMake detects build dependencies, it was possible that a parallel make would try to build stinger_alg before generating headers for stinger_net.

This commit adds the link dependency back, which forces CMake to generate headers for stinger_net before stinger_alg is built.

Fixes #235.


This change is Reviewable