-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide PackageConfig module for CMake #1096
Comments
@numenta/nupic-committers Haven't we tried this before? |
Not exactly. I think @breznak is suggesting we provide a generic CMake module so that consumers of nupic.core can integrate it easily into their own CMake builds. 👍 from me. |
👍 from me as well |
Bump. Is anyone linking their 3rd party (cmake based) app to nupic.core? Ok, an update, we probably shouldn't write our own
But, instead just create a |
Thanks for the update. No one is currently planning on working on this at the moment. |
so nupic.core libraries can be easily detected & included by 3rd party C++ programs.
https://cmake.org/Wiki/CMake:How_To_Find_LibrariesEDIt: reference of others
https://github.com/numenta/nupic.core/blob/master/CMakeLists.txt
https://cmake.org/Wiki/CMake/Tutorials/Packaging
https://cmake.org/Wiki/CMake/Tutorials/How_to_create_a_ProjectConfig.cmake_file
The desired result is:
We can call
find_package(NupicCore)
in an external cmake repo and use the includes/libraries/binaries/flags from this project.The text was updated successfully, but these errors were encountered: