Hacker News new | ask | show | jobs
by tfordon 3485 days ago
A project I used to work on (opticks.org) used Ivy. At the time, Ivy was the best solution we could find for C++ dependency management.

Are there any good cross-platform alternatives for C++ dependency management?

1 comments

We also used Ivy for C++ dependency management, now we use Conan.io. But it is very different with Ivy in many aspects
Someone suggest use Gradle with C++, but we did not try https://gradle.org/getting-started-native/
Given its state on Android, I wouldn't advise it.

Google gave up on their plugin for C++ and is now advising cmake as the future for new NDK projects.

Thanks KindDragon. I'll try Conan.io this weekend.