-
Notifications
You must be signed in to change notification settings - Fork 447
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
Move find_package in external/CMakeLists.txt to CMakeLists.txt #1750
Conversation
… so variables remain in scope.
Still have one more problem - The libsigmf install is being included in the .deb file, which we don't want. |
To clarify the problem: Most of the projects in external/CMakeLists.txt have the INSTALL_COMMAND set to "" and the libs and includes are picked up from the build directory rather than the install directory (which doesn't exist). However, libsigmf seems to create some needed files only during the install, so we need to run the install step for that. The deb packager is picking up those installed files, which we don't want in the .deb, so need to find a way to exclude them. Haven't used the deb packager before, so working my way though the process... |
Move find_package in external/CMakeLists.txt to CMakeLists.txt to see if variables remain in scope. (Needs to be tidied up if it works)
Also fix codec2 build.
Add status messages for features build.
For #1740